copyWithWrapped method
WebApiLogicAppFuncSessionWarehouse
copyWithWrapped({
- Wrapped<
String?> ? warehouseid, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? warehousecode, - Wrapped<
bool?> ? promptforcheckoutexceptions, - Wrapped<
bool?> ? promptforcheckinexceptions, - Wrapped<
bool?> ? storagecontainerstagingenable, - Wrapped<
bool?> ? storagecontainerrescanrequired, - Wrapped<
bool?> ? quikreceiptenable, - Wrapped<
int?> ? transferavailabilitydays, - Wrapped<
String?> ? regionid, - Wrapped<
String?> ? region, - Wrapped<
String?> ? regionwarehouseids, - Wrapped<
String?> ? regionwarehouses, - Wrapped<
String?> ? internalorderdealid,
Implementation
WebApiLogicAppFuncSessionWarehouse copyWithWrapped(
{Wrapped<String?>? warehouseid,
Wrapped<String?>? warehouse,
Wrapped<String?>? warehousecode,
Wrapped<bool?>? promptforcheckoutexceptions,
Wrapped<bool?>? promptforcheckinexceptions,
Wrapped<bool?>? storagecontainerstagingenable,
Wrapped<bool?>? storagecontainerrescanrequired,
Wrapped<bool?>? quikreceiptenable,
Wrapped<int?>? transferavailabilitydays,
Wrapped<String?>? regionid,
Wrapped<String?>? region,
Wrapped<String?>? regionwarehouseids,
Wrapped<String?>? regionwarehouses,
Wrapped<String?>? internalorderdealid}) {
return WebApiLogicAppFuncSessionWarehouse(
warehouseid:
(warehouseid != null ? warehouseid.value : this.warehouseid),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
warehousecode:
(warehousecode != null ? warehousecode.value : this.warehousecode),
promptforcheckoutexceptions: (promptforcheckoutexceptions != null
? promptforcheckoutexceptions.value
: this.promptforcheckoutexceptions),
promptforcheckinexceptions: (promptforcheckinexceptions != null
? promptforcheckinexceptions.value
: this.promptforcheckinexceptions),
storagecontainerstagingenable: (storagecontainerstagingenable != null
? storagecontainerstagingenable.value
: this.storagecontainerstagingenable),
storagecontainerrescanrequired: (storagecontainerrescanrequired != null
? storagecontainerrescanrequired.value
: this.storagecontainerrescanrequired),
quikreceiptenable: (quikreceiptenable != null
? quikreceiptenable.value
: this.quikreceiptenable),
transferavailabilitydays: (transferavailabilitydays != null
? transferavailabilitydays.value
: this.transferavailabilitydays),
regionid: (regionid != null ? regionid.value : this.regionid),
region: (region != null ? region.value : this.region),
regionwarehouseids: (regionwarehouseids != null
? regionwarehouseids.value
: this.regionwarehouseids),
regionwarehouses: (regionwarehouses != null
? regionwarehouses.value
: this.regionwarehouses),
internalorderdealid: (internalorderdealid != null
? internalorderdealid.value
: this.internalorderdealid));
}