copyWith method
WebApiLogicAppFuncSessionWarehouse
copyWith({
- String? warehouseid,
- String? warehouse,
- String? warehousecode,
- bool? promptforcheckoutexceptions,
- bool? promptforcheckinexceptions,
- bool? storagecontainerstagingenable,
- bool? storagecontainerrescanrequired,
- bool? quikreceiptenable,
- int? transferavailabilitydays,
- String? regionid,
- String? region,
- String? regionwarehouseids,
- String? regionwarehouses,
- String? internalorderdealid,
Implementation
WebApiLogicAppFuncSessionWarehouse copyWith(
{String? warehouseid,
String? warehouse,
String? warehousecode,
bool? promptforcheckoutexceptions,
bool? promptforcheckinexceptions,
bool? storagecontainerstagingenable,
bool? storagecontainerrescanrequired,
bool? quikreceiptenable,
int? transferavailabilitydays,
String? regionid,
String? region,
String? regionwarehouseids,
String? regionwarehouses,
String? internalorderdealid}) {
return WebApiLogicAppFuncSessionWarehouse(
warehouseid: warehouseid ?? this.warehouseid,
warehouse: warehouse ?? this.warehouse,
warehousecode: warehousecode ?? this.warehousecode,
promptforcheckoutexceptions:
promptforcheckoutexceptions ?? this.promptforcheckoutexceptions,
promptforcheckinexceptions:
promptforcheckinexceptions ?? this.promptforcheckinexceptions,
storagecontainerstagingenable:
storagecontainerstagingenable ?? this.storagecontainerstagingenable,
storagecontainerrescanrequired: storagecontainerrescanrequired ??
this.storagecontainerrescanrequired,
quikreceiptenable: quikreceiptenable ?? this.quikreceiptenable,
transferavailabilitydays:
transferavailabilitydays ?? this.transferavailabilitydays,
regionid: regionid ?? this.regionid,
region: region ?? this.region,
regionwarehouseids: regionwarehouseids ?? this.regionwarehouseids,
regionwarehouses: regionwarehouses ?? this.regionwarehouses,
internalorderdealid: internalorderdealid ?? this.internalorderdealid);
}