copyWith method
WebApiModulesHomeControlsReceiptCreditReceiptCredit
copyWith({
- String? creditReceiptId,
- String? creditingInvoiceId,
- String? receiptId,
- String? customerId,
- String? customer,
- String? dealId,
- String? deal,
- String? officeLocationId,
- String? paymentBy,
- String? recType,
- String? recTypeDisplay,
- String? recTypeColor,
- String? receiptDate,
- String? paymentTypeId,
- String? paymentType,
- String? paymentTypeType,
- String? checkNumber,
- double? origAmount,
- double? applied,
- double? refunded,
- double? remaining,
- double? amount,
- String? currencyId,
- String? currencyCode,
- String? currencySymbol,
- String? creditCardName,
- String? creditCardExpirationDate,
- DateTime? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsReceiptCreditReceiptCredit copyWith(
{String? creditReceiptId,
String? creditingInvoiceId,
String? receiptId,
String? customerId,
String? customer,
String? dealId,
String? deal,
String? officeLocationId,
String? paymentBy,
String? recType,
String? recTypeDisplay,
String? recTypeColor,
String? receiptDate,
String? paymentTypeId,
String? paymentType,
String? paymentTypeType,
String? checkNumber,
double? origAmount,
double? applied,
double? refunded,
double? remaining,
double? amount,
String? currencyId,
String? currencyCode,
String? currencySymbol,
String? creditCardName,
String? creditCardExpirationDate,
DateTime? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsReceiptCreditReceiptCredit(
creditReceiptId: creditReceiptId ?? this.creditReceiptId,
creditingInvoiceId: creditingInvoiceId ?? this.creditingInvoiceId,
receiptId: receiptId ?? this.receiptId,
customerId: customerId ?? this.customerId,
customer: customer ?? this.customer,
dealId: dealId ?? this.dealId,
deal: deal ?? this.deal,
officeLocationId: officeLocationId ?? this.officeLocationId,
paymentBy: paymentBy ?? this.paymentBy,
recType: recType ?? this.recType,
recTypeDisplay: recTypeDisplay ?? this.recTypeDisplay,
recTypeColor: recTypeColor ?? this.recTypeColor,
receiptDate: receiptDate ?? this.receiptDate,
paymentTypeId: paymentTypeId ?? this.paymentTypeId,
paymentType: paymentType ?? this.paymentType,
paymentTypeType: paymentTypeType ?? this.paymentTypeType,
checkNumber: checkNumber ?? this.checkNumber,
origAmount: origAmount ?? this.origAmount,
applied: applied ?? this.applied,
refunded: refunded ?? this.refunded,
remaining: remaining ?? this.remaining,
amount: amount ?? this.amount,
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,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}