copyWithWrapped method
WebApiModulesHomeControlsSuspendedSessionSuspendedSession
copyWithWrapped({
- Wrapped<
String?> ? contractId, - Wrapped<
int?> ? sessionNumber, - Wrapped<
String?> ? deal, - Wrapped<
String?> ? dealNumber, - Wrapped<
String?> ? dealOrVendor, - Wrapped<
String?> ? orderNumber, - Wrapped<
String?> ? orderDescription, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? userName, - Wrapped<
String?> ? userNameFirstMiddleLast, - Wrapped<
String?> ? status, - Wrapped<
String?> ? statusDate, - Wrapped<
String?> ? usersId, - Wrapped<
String?> ? contractDate, - Wrapped<
String?> ? contractTime, - Wrapped<
String?> ? dealId, - Wrapped<
String?> ? departmentId, - Wrapped<
String?> ? department, - Wrapped<
String?> ? officeLocationId, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? exchangeContractId, - Wrapped<
String?> ? contractType, - Wrapped<
bool?> ? isForcedSuspend, - Wrapped<
String?> ? containerItemId, - Wrapped<
String?> ? containerScannableItemId, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesHomeControlsSuspendedSessionSuspendedSession copyWithWrapped(
{Wrapped<String?>? contractId,
Wrapped<int?>? sessionNumber,
Wrapped<String?>? deal,
Wrapped<String?>? dealNumber,
Wrapped<String?>? dealOrVendor,
Wrapped<String?>? orderNumber,
Wrapped<String?>? orderDescription,
Wrapped<String?>? orderId,
Wrapped<String?>? userName,
Wrapped<String?>? userNameFirstMiddleLast,
Wrapped<String?>? status,
Wrapped<String?>? statusDate,
Wrapped<String?>? usersId,
Wrapped<String?>? contractDate,
Wrapped<String?>? contractTime,
Wrapped<String?>? dealId,
Wrapped<String?>? departmentId,
Wrapped<String?>? department,
Wrapped<String?>? officeLocationId,
Wrapped<String?>? warehouseId,
Wrapped<String?>? warehouse,
Wrapped<String?>? exchangeContractId,
Wrapped<String?>? contractType,
Wrapped<bool?>? isForcedSuspend,
Wrapped<String?>? containerItemId,
Wrapped<String?>? containerScannableItemId,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesHomeControlsSuspendedSessionSuspendedSession(
contractId: (contractId != null ? contractId.value : this.contractId),
sessionNumber:
(sessionNumber != null ? sessionNumber.value : this.sessionNumber),
deal: (deal != null ? deal.value : this.deal),
dealNumber: (dealNumber != null ? dealNumber.value : this.dealNumber),
dealOrVendor:
(dealOrVendor != null ? dealOrVendor.value : this.dealOrVendor),
orderNumber:
(orderNumber != null ? orderNumber.value : this.orderNumber),
orderDescription: (orderDescription != null
? orderDescription.value
: this.orderDescription),
orderId: (orderId != null ? orderId.value : this.orderId),
userName: (userName != null ? userName.value : this.userName),
userNameFirstMiddleLast: (userNameFirstMiddleLast != null
? userNameFirstMiddleLast.value
: this.userNameFirstMiddleLast),
status: (status != null ? status.value : this.status),
statusDate: (statusDate != null ? statusDate.value : this.statusDate),
usersId: (usersId != null ? usersId.value : this.usersId),
contractDate:
(contractDate != null ? contractDate.value : this.contractDate),
contractTime:
(contractTime != null ? contractTime.value : this.contractTime),
dealId: (dealId != null ? dealId.value : this.dealId),
departmentId:
(departmentId != null ? departmentId.value : this.departmentId),
department: (department != null ? department.value : this.department),
officeLocationId: (officeLocationId != null
? officeLocationId.value
: this.officeLocationId),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
exchangeContractId: (exchangeContractId != null
? exchangeContractId.value
: this.exchangeContractId),
contractType:
(contractType != null ? contractType.value : this.contractType),
isForcedSuspend: (isForcedSuspend != null
? isForcedSuspend.value
: this.isForcedSuspend),
containerItemId: (containerItemId != null
? containerItemId.value
: this.containerItemId),
containerScannableItemId: (containerScannableItemId != null
? containerScannableItemId.value
: this.containerScannableItemId),
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));
}