copyWith method
WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog
copyWith({
- String? reservedRentalItemLogId,
- String? orderId,
- String? orderItemId,
- String? rentalItemId,
- String? inventoryId,
- String? iCode,
- String? inventoryTypeId,
- String? categoryId,
- String? subCategoryId,
- String? description,
- String? warehouseId,
- String? action,
- String? actionDateTime,
- String? usersId,
- String? barCode,
- String? serialNumber,
- String? trackedByCode,
- String? consignorId,
- String? consignor,
- String? orderNumber,
- String? orderDescription,
- String? orderType,
- String? dealId,
- String? deal,
- String? nameFml,
- DateTime? fromDateTime,
- DateTime? toDateTime,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog copyWith(
{String? reservedRentalItemLogId,
String? orderId,
String? orderItemId,
String? rentalItemId,
String? inventoryId,
String? iCode,
String? inventoryTypeId,
String? categoryId,
String? subCategoryId,
String? description,
String? warehouseId,
String? action,
String? actionDateTime,
String? usersId,
String? barCode,
String? serialNumber,
String? trackedByCode,
String? consignorId,
String? consignor,
String? orderNumber,
String? orderDescription,
String? orderType,
String? dealId,
String? deal,
String? nameFml,
DateTime? fromDateTime,
DateTime? toDateTime,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog(
reservedRentalItemLogId:
reservedRentalItemLogId ?? this.reservedRentalItemLogId,
orderId: orderId ?? this.orderId,
orderItemId: orderItemId ?? this.orderItemId,
rentalItemId: rentalItemId ?? this.rentalItemId,
inventoryId: inventoryId ?? this.inventoryId,
iCode: iCode ?? this.iCode,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
categoryId: categoryId ?? this.categoryId,
subCategoryId: subCategoryId ?? this.subCategoryId,
description: description ?? this.description,
warehouseId: warehouseId ?? this.warehouseId,
action: action ?? this.action,
actionDateTime: actionDateTime ?? this.actionDateTime,
usersId: usersId ?? this.usersId,
barCode: barCode ?? this.barCode,
serialNumber: serialNumber ?? this.serialNumber,
trackedByCode: trackedByCode ?? this.trackedByCode,
consignorId: consignorId ?? this.consignorId,
consignor: consignor ?? this.consignor,
orderNumber: orderNumber ?? this.orderNumber,
orderDescription: orderDescription ?? this.orderDescription,
orderType: orderType ?? this.orderType,
dealId: dealId ?? this.dealId,
deal: deal ?? this.deal,
nameFml: nameFml ?? this.nameFml,
fromDateTime: fromDateTime ?? this.fromDateTime,
toDateTime: toDateTime ?? this.toDateTime,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}