UHotelInvoiceUpdateParams constructor

UHotelInvoiceUpdateParams({
  1. required String id,
  2. String? detail1,
  3. String? detail2,
  4. List<int>? addTags,
  5. List<int>? removeTags,
  6. List<int>? tags,
  7. double? debtAmount,
  8. double? creditorAmount,
  9. double? paidAmount,
  10. double? penaltyAmount,
  11. int? penaltyPrecentEveryDate,
  12. DateTime? dueDate,
  13. String? reservationId,
  14. List<String>? adminUserIds,
  15. List<String>? addAdminUserIds,
  16. List<String>? removeAdminUserIds,
})

Implementation

UHotelInvoiceUpdateParams({
  required this.id,
  this.detail1,
  this.detail2,
  this.addTags,
  this.removeTags,
  this.tags,
  this.debtAmount,
  this.creditorAmount,
  this.paidAmount,
  this.penaltyAmount,
  this.penaltyPrecentEveryDate,
  this.dueDate,
  this.reservationId,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});