copyWith method

WebApiModulesHomeControlsReservedRentalItemLogReservedRentalItemLog copyWith({
  1. String? reservedRentalItemLogId,
  2. String? orderId,
  3. String? orderItemId,
  4. String? rentalItemId,
  5. String? inventoryId,
  6. String? iCode,
  7. String? inventoryTypeId,
  8. String? categoryId,
  9. String? subCategoryId,
  10. String? description,
  11. String? warehouseId,
  12. String? action,
  13. String? actionDateTime,
  14. String? usersId,
  15. String? barCode,
  16. String? serialNumber,
  17. String? trackedByCode,
  18. String? consignorId,
  19. String? consignor,
  20. String? orderNumber,
  21. String? orderDescription,
  22. String? orderType,
  23. String? dealId,
  24. String? deal,
  25. String? nameFml,
  26. DateTime? fromDateTime,
  27. DateTime? toDateTime,
  28. String? auditNote,
  29. String? recordTitle,
  30. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  31. List<FwStandardDataFwCustomValue>? custom,
  32. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  33. 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);
}