copyWith method

WebApiLogicAppFuncSessionWarehouse copyWith({
  1. String? warehouseid,
  2. String? warehouse,
  3. String? warehousecode,
  4. bool? promptforcheckoutexceptions,
  5. bool? promptforcheckinexceptions,
  6. bool? storagecontainerstagingenable,
  7. bool? storagecontainerrescanrequired,
  8. bool? quikreceiptenable,
  9. int? transferavailabilitydays,
  10. String? regionid,
  11. String? region,
  12. String? regionwarehouseids,
  13. String? regionwarehouses,
  14. String? internalorderdealid,
  15. bool? checkinenablescanningtoaisleshelf,
})

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,
  bool? checkinenablescanningtoaisleshelf,
}) {
  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,
    checkinenablescanningtoaisleshelf:
        checkinenablescanningtoaisleshelf ??
        this.checkinenablescanningtoaisleshelf,
  );
}