copyWith method
WebApiModulesBillingInvoiceInvoiceReceipt
copyWith({
- int? invoiceReceiptId,
- String? invoiceId,
- String? receiptId,
- String? receiptDate,
- String? paymentTypeId,
- String? paymentType,
- String? paymentTypeType,
- String? checkNumber,
- String? recType,
- String? paymentBy,
- String? receiptCustomerId,
- String? receiptCustomer,
- String? receiptDealId,
- String? receiptDeal,
- String? invoiceNumber,
- String? invoiceDate,
- String? invoiceDescription,
- String? invoiceDealId,
- String? invoiceDeal,
- String? invoiceOrderId,
- String? invoiceOrderDescription,
- double? amount,
- double? appliedPaymentTypeFee,
- double? feePercent,
- double? remaining,
- String? appliedById,
- String? appliedBy,
- String? paymentMemo,
- String? currencyId,
- String? currencyCode,
- String? currencySymbol,
- String? creditCardName,
- String? creditCardExpirationDate,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- dynamic urlIdentifier,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - FwStandardBusinessLogicFwBusinessLogic? original,
- List<
FwStandardDataFwTranslatedValue> ? translation, - bool? hasImport,
- bool? hasDocuments,
- String? createdByUserId,
- String? createdByUserName,
- String? createdDateTime,
- String? modifiedByUserId,
- String? modifiedByUserName,
- String? modifiedDateTime,
Implementation
WebApiModulesBillingInvoiceInvoiceReceipt copyWith({
int? invoiceReceiptId,
String? invoiceId,
String? receiptId,
String? receiptDate,
String? paymentTypeId,
String? paymentType,
String? paymentTypeType,
String? checkNumber,
String? recType,
String? paymentBy,
String? receiptCustomerId,
String? receiptCustomer,
String? receiptDealId,
String? receiptDeal,
String? invoiceNumber,
String? invoiceDate,
String? invoiceDescription,
String? invoiceDealId,
String? invoiceDeal,
String? invoiceOrderId,
String? invoiceOrderDescription,
double? amount,
double? appliedPaymentTypeFee,
double? feePercent,
double? remaining,
String? appliedById,
String? appliedBy,
String? paymentMemo,
String? currencyId,
String? currencyCode,
String? currencySymbol,
String? creditCardName,
String? creditCardExpirationDate,
String? dateStamp,
String? auditNote,
String? recordTitle,
dynamic urlIdentifier,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
FwStandardBusinessLogicFwBusinessLogic? original,
List<FwStandardDataFwTranslatedValue>? translation,
bool? hasImport,
bool? hasDocuments,
String? createdByUserId,
String? createdByUserName,
String? createdDateTime,
String? modifiedByUserId,
String? modifiedByUserName,
String? modifiedDateTime,
}) {
return WebApiModulesBillingInvoiceInvoiceReceipt(
invoiceReceiptId: invoiceReceiptId ?? this.invoiceReceiptId,
invoiceId: invoiceId ?? this.invoiceId,
receiptId: receiptId ?? this.receiptId,
receiptDate: receiptDate ?? this.receiptDate,
paymentTypeId: paymentTypeId ?? this.paymentTypeId,
paymentType: paymentType ?? this.paymentType,
paymentTypeType: paymentTypeType ?? this.paymentTypeType,
checkNumber: checkNumber ?? this.checkNumber,
recType: recType ?? this.recType,
paymentBy: paymentBy ?? this.paymentBy,
receiptCustomerId: receiptCustomerId ?? this.receiptCustomerId,
receiptCustomer: receiptCustomer ?? this.receiptCustomer,
receiptDealId: receiptDealId ?? this.receiptDealId,
receiptDeal: receiptDeal ?? this.receiptDeal,
invoiceNumber: invoiceNumber ?? this.invoiceNumber,
invoiceDate: invoiceDate ?? this.invoiceDate,
invoiceDescription: invoiceDescription ?? this.invoiceDescription,
invoiceDealId: invoiceDealId ?? this.invoiceDealId,
invoiceDeal: invoiceDeal ?? this.invoiceDeal,
invoiceOrderId: invoiceOrderId ?? this.invoiceOrderId,
invoiceOrderDescription:
invoiceOrderDescription ?? this.invoiceOrderDescription,
amount: amount ?? this.amount,
appliedPaymentTypeFee:
appliedPaymentTypeFee ?? this.appliedPaymentTypeFee,
feePercent: feePercent ?? this.feePercent,
remaining: remaining ?? this.remaining,
appliedById: appliedById ?? this.appliedById,
appliedBy: appliedBy ?? this.appliedBy,
paymentMemo: paymentMemo ?? this.paymentMemo,
currencyId: currencyId ?? this.currencyId,
currencyCode: currencyCode ?? this.currencyCode,
currencySymbol: currencySymbol ?? this.currencySymbol,
creditCardName: creditCardName ?? this.creditCardName,
creditCardExpirationDate:
creditCardExpirationDate ?? this.creditCardExpirationDate,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
urlIdentifier: urlIdentifier ?? this.urlIdentifier,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
original: original ?? this.original,
translation: translation ?? this.translation,
hasImport: hasImport ?? this.hasImport,
hasDocuments: hasDocuments ?? this.hasDocuments,
createdByUserId: createdByUserId ?? this.createdByUserId,
createdByUserName: createdByUserName ?? this.createdByUserName,
createdDateTime: createdDateTime ?? this.createdDateTime,
modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
);
}