copyWithWrapped method
WebApiModulesHomeControlsReceiptInvoiceReceiptInvoice
copyWithWrapped({
- Wrapped<
String?> ? invoiceReceiptId, - Wrapped<
String?> ? invoiceId, - Wrapped<
String?> ? invoiceNumber, - Wrapped<
String?> ? invoiceDate, - Wrapped<
String?> ? description, - Wrapped<
String?> ? status, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? orderNumber, - Wrapped<
String?> ? dealId, - Wrapped<
String?> ? deal, - Wrapped<
double?> ? total, - Wrapped<
bool?> ? receiptId, - Wrapped<
String?> ? invoiceType, - Wrapped<
double?> ? applied, - Wrapped<
double?> ? amount, - Wrapped<
double?> ? due, - Wrapped<
String?> ? customerId, - Wrapped<
String?> ? customer, - Wrapped<
String?> ? officeLocationId, - Wrapped<
String?> ? departmentId, - Wrapped<
String?> ? currencyId, - Wrapped<
String?> ? currencyCode, - Wrapped<
String?> ? currencySymbol, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesHomeControlsReceiptInvoiceReceiptInvoice copyWithWrapped(
{Wrapped<String?>? invoiceReceiptId,
Wrapped<String?>? invoiceId,
Wrapped<String?>? invoiceNumber,
Wrapped<String?>? invoiceDate,
Wrapped<String?>? description,
Wrapped<String?>? status,
Wrapped<String?>? orderId,
Wrapped<String?>? orderNumber,
Wrapped<String?>? dealId,
Wrapped<String?>? deal,
Wrapped<double?>? total,
Wrapped<bool?>? receiptId,
Wrapped<String?>? invoiceType,
Wrapped<double?>? applied,
Wrapped<double?>? amount,
Wrapped<double?>? due,
Wrapped<String?>? customerId,
Wrapped<String?>? customer,
Wrapped<String?>? officeLocationId,
Wrapped<String?>? departmentId,
Wrapped<String?>? currencyId,
Wrapped<String?>? currencyCode,
Wrapped<String?>? currencySymbol,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesHomeControlsReceiptInvoiceReceiptInvoice(
invoiceReceiptId: (invoiceReceiptId != null
? invoiceReceiptId.value
: this.invoiceReceiptId),
invoiceId: (invoiceId != null ? invoiceId.value : this.invoiceId),
invoiceNumber:
(invoiceNumber != null ? invoiceNumber.value : this.invoiceNumber),
invoiceDate:
(invoiceDate != null ? invoiceDate.value : this.invoiceDate),
description:
(description != null ? description.value : this.description),
status: (status != null ? status.value : this.status),
orderId: (orderId != null ? orderId.value : this.orderId),
orderNumber:
(orderNumber != null ? orderNumber.value : this.orderNumber),
dealId: (dealId != null ? dealId.value : this.dealId),
deal: (deal != null ? deal.value : this.deal),
total: (total != null ? total.value : this.total),
receiptId: (receiptId != null ? receiptId.value : this.receiptId),
invoiceType:
(invoiceType != null ? invoiceType.value : this.invoiceType),
applied: (applied != null ? applied.value : this.applied),
amount: (amount != null ? amount.value : this.amount),
due: (due != null ? due.value : this.due),
customerId: (customerId != null ? customerId.value : this.customerId),
customer: (customer != null ? customer.value : this.customer),
officeLocationId: (officeLocationId != null
? officeLocationId.value
: this.officeLocationId),
departmentId:
(departmentId != null ? departmentId.value : this.departmentId),
currencyId: (currencyId != null ? currencyId.value : this.currencyId),
currencyCode:
(currencyCode != null ? currencyCode.value : this.currencyCode),
currencySymbol: (currencySymbol != null
? currencySymbol.value
: this.currencySymbol),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle:
(recordTitle != null ? recordTitle.value : this.recordTitle),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
translation:
(translation != null ? translation.value : this.translation));
}