copyWithWrapped method
WebApiModulesHomeControlsPickListUtilityItemApplyPickListSessionItemsRequest
copyWithWrapped({
- Wrapped<
String?> ? sessionId, - Wrapped<
bool?> ? itemsNotYetStaged, - Wrapped<
bool?> ? itemsStaged, - Wrapped<
bool?> ? itemsOut, - Wrapped<
DateTime?> ? pickDateFrom, - Wrapped<
DateTime?> ? pickDateTo, - Wrapped<
bool?> ? rentalItems, - Wrapped<
bool?> ? salesItems, - Wrapped<
bool?> ? vendorItems, - Wrapped<
bool?> ? laborItems, - Wrapped<
String?> ? warehouseId, - Wrapped<
bool?> ? completeKitMains, - Wrapped<
bool?> ? completeKitAccessories, - Wrapped<
bool?> ? completeKitOptions, - Wrapped<
bool?> ? standAloneItems, - Wrapped<
bool?> ? itemsOnOtherPickLists, - Wrapped<
bool?> ? reduceQuantityAlreadyPicked, - Wrapped<
bool?> ? summarizeByICode, - Wrapped<
bool?> ? summarizeCompleteKitItems, - Wrapped<
bool?> ? honorCompleteKitItemTypes, - Wrapped<
String?> ? inventoryTypeId, - Wrapped<
bool?> ? selectAll, - Wrapped<
bool?> ? selectNone,
Implementation
WebApiModulesHomeControlsPickListUtilityItemApplyPickListSessionItemsRequest
copyWithWrapped(
{Wrapped<String?>? sessionId,
Wrapped<bool?>? itemsNotYetStaged,
Wrapped<bool?>? itemsStaged,
Wrapped<bool?>? itemsOut,
Wrapped<DateTime?>? pickDateFrom,
Wrapped<DateTime?>? pickDateTo,
Wrapped<bool?>? rentalItems,
Wrapped<bool?>? salesItems,
Wrapped<bool?>? vendorItems,
Wrapped<bool?>? laborItems,
Wrapped<String?>? warehouseId,
Wrapped<bool?>? completeKitMains,
Wrapped<bool?>? completeKitAccessories,
Wrapped<bool?>? completeKitOptions,
Wrapped<bool?>? standAloneItems,
Wrapped<bool?>? itemsOnOtherPickLists,
Wrapped<bool?>? reduceQuantityAlreadyPicked,
Wrapped<bool?>? summarizeByICode,
Wrapped<bool?>? summarizeCompleteKitItems,
Wrapped<bool?>? honorCompleteKitItemTypes,
Wrapped<String?>? inventoryTypeId,
Wrapped<bool?>? selectAll,
Wrapped<bool?>? selectNone}) {
return WebApiModulesHomeControlsPickListUtilityItemApplyPickListSessionItemsRequest(
sessionId: (sessionId != null ? sessionId.value : this.sessionId),
itemsNotYetStaged: (itemsNotYetStaged != null
? itemsNotYetStaged.value
: this.itemsNotYetStaged),
itemsStaged:
(itemsStaged != null ? itemsStaged.value : this.itemsStaged),
itemsOut: (itemsOut != null ? itemsOut.value : this.itemsOut),
pickDateFrom:
(pickDateFrom != null ? pickDateFrom.value : this.pickDateFrom),
pickDateTo: (pickDateTo != null ? pickDateTo.value : this.pickDateTo),
rentalItems:
(rentalItems != null ? rentalItems.value : this.rentalItems),
salesItems: (salesItems != null ? salesItems.value : this.salesItems),
vendorItems:
(vendorItems != null ? vendorItems.value : this.vendorItems),
laborItems: (laborItems != null ? laborItems.value : this.laborItems),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
completeKitMains: (completeKitMains != null
? completeKitMains.value
: this.completeKitMains),
completeKitAccessories: (completeKitAccessories != null
? completeKitAccessories.value
: this.completeKitAccessories),
completeKitOptions: (completeKitOptions != null
? completeKitOptions.value
: this.completeKitOptions),
standAloneItems: (standAloneItems != null
? standAloneItems.value
: this.standAloneItems),
itemsOnOtherPickLists: (itemsOnOtherPickLists != null
? itemsOnOtherPickLists.value
: this.itemsOnOtherPickLists),
reduceQuantityAlreadyPicked: (reduceQuantityAlreadyPicked != null
? reduceQuantityAlreadyPicked.value
: this.reduceQuantityAlreadyPicked),
summarizeByICode: (summarizeByICode != null
? summarizeByICode.value
: this.summarizeByICode),
summarizeCompleteKitItems: (summarizeCompleteKitItems != null
? summarizeCompleteKitItems.value
: this.summarizeCompleteKitItems),
honorCompleteKitItemTypes: (honorCompleteKitItemTypes != null
? honorCompleteKitItemTypes.value
: this.honorCompleteKitItemTypes),
inventoryTypeId: (inventoryTypeId != null
? inventoryTypeId.value
: this.inventoryTypeId),
selectAll: (selectAll != null ? selectAll.value : this.selectAll),
selectNone: (selectNone != null ? selectNone.value : this.selectNone));
}