copyWithWrapped method
WebApiModulesHomeControlsInvoiceNoteInvoiceNote
copyWithWrapped({
- Wrapped<
String?> ? invoiceNoteId, - Wrapped<
String?> ? invoiceId, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? orderNumber, - Wrapped<
String?> ? noteDate, - Wrapped<
String?> ? description, - Wrapped<
String?> ? notesById, - Wrapped<
String?> ? notesBy, - Wrapped<
String?> ? notes, - Wrapped<
bool?> ? printOnInvoice, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesHomeControlsInvoiceNoteInvoiceNote copyWithWrapped(
{Wrapped<String?>? invoiceNoteId,
Wrapped<String?>? invoiceId,
Wrapped<String?>? orderId,
Wrapped<String?>? orderNumber,
Wrapped<String?>? noteDate,
Wrapped<String?>? description,
Wrapped<String?>? notesById,
Wrapped<String?>? notesBy,
Wrapped<String?>? notes,
Wrapped<bool?>? printOnInvoice,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesHomeControlsInvoiceNoteInvoiceNote(
invoiceNoteId:
(invoiceNoteId != null ? invoiceNoteId.value : this.invoiceNoteId),
invoiceId: (invoiceId != null ? invoiceId.value : this.invoiceId),
orderId: (orderId != null ? orderId.value : this.orderId),
orderNumber:
(orderNumber != null ? orderNumber.value : this.orderNumber),
noteDate: (noteDate != null ? noteDate.value : this.noteDate),
description:
(description != null ? description.value : this.description),
notesById: (notesById != null ? notesById.value : this.notesById),
notesBy: (notesBy != null ? notesBy.value : this.notesBy),
notes: (notes != null ? notes.value : this.notes),
printOnInvoice: (printOnInvoice != null
? printOnInvoice.value
: this.printOnInvoice),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
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));
}