appendCodes method

Future<List<DecryptedInvoice>> appendCodes(
  1. String userId,
  2. String type,
  3. String sentMediumType,
  4. String secretFKeys,
  5. List<EncryptedInvoicingCode> invoicingCodes, {
  6. String? insuranceId,
  7. String? invoiceId,
  8. int? gracePeriod,
})

Implementation

Future<List<DecryptedInvoice>> appendCodes(String userId, String type, String sentMediumType, String secretFKeys, List<EncryptedInvoicingCode> invoicingCodes, { String? insuranceId, String? invoiceId, int? gracePeriod }) async {
	return await CardinalSdkPlatformInterface.instance.apis.invoice.appendCodes(
		_sdkId,
		userId,
		type,
		sentMediumType,
		secretFKeys,
		insuranceId,
		invoiceId,
		gracePeriod,
		invoicingCodes,
	);
}