copyWithWrapped method
WebApiModulesHomeOrderApprovalOrderApproval
copyWithWrapped({
- Wrapped<
int?> ? orderApprovalId, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? webUsersId, - Wrapped<
String?> ? token, - Wrapped<
String?> ? expireDate, - Wrapped<
String?> ? createdDate, - Wrapped<
String?> ? status, - Wrapped<
String?> ? contactId, - Wrapped<
String?> ? contactName, - Wrapped<
String?> ? contactEmail, - Wrapped<
String?> ? statusChangeDate, - Wrapped<
String?> ? notes, - Wrapped<
String?> ? paymentTermsId, - Wrapped<
String?> ? paymentTypeId, - Wrapped<
double?> ? amount, - 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
WebApiModulesHomeOrderApprovalOrderApproval copyWithWrapped(
{Wrapped<int?>? orderApprovalId,
Wrapped<String?>? orderId,
Wrapped<String?>? webUsersId,
Wrapped<String?>? token,
Wrapped<String?>? expireDate,
Wrapped<String?>? createdDate,
Wrapped<String?>? status,
Wrapped<String?>? contactId,
Wrapped<String?>? contactName,
Wrapped<String?>? contactEmail,
Wrapped<String?>? statusChangeDate,
Wrapped<String?>? notes,
Wrapped<String?>? paymentTermsId,
Wrapped<String?>? paymentTypeId,
Wrapped<double?>? amount,
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 WebApiModulesHomeOrderApprovalOrderApproval(
orderApprovalId: (orderApprovalId != null
? orderApprovalId.value
: this.orderApprovalId),
orderId: (orderId != null ? orderId.value : this.orderId),
webUsersId: (webUsersId != null ? webUsersId.value : this.webUsersId),
token: (token != null ? token.value : this.token),
expireDate: (expireDate != null ? expireDate.value : this.expireDate),
createdDate:
(createdDate != null ? createdDate.value : this.createdDate),
status: (status != null ? status.value : this.status),
contactId: (contactId != null ? contactId.value : this.contactId),
contactName:
(contactName != null ? contactName.value : this.contactName),
contactEmail:
(contactEmail != null ? contactEmail.value : this.contactEmail),
statusChangeDate: (statusChangeDate != null
? statusChangeDate.value
: this.statusChangeDate),
notes: (notes != null ? notes.value : this.notes),
paymentTermsId: (paymentTermsId != null
? paymentTermsId.value
: this.paymentTermsId),
paymentTypeId:
(paymentTypeId != null ? paymentTypeId.value : this.paymentTypeId),
amount: (amount != null ? amount.value : this.amount),
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));
}