UHotelReservationUpdateParams constructor

UHotelReservationUpdateParams({
  1. required String id,
  2. String? detail1,
  3. String? detail2,
  4. List<int>? addTags,
  5. List<int>? removeTags,
  6. List<int>? tags,
  7. DateTime? checkInDate,
  8. DateTime? checkOutDate,
  9. int? guestCount,
  10. double? totalPrice,
  11. String? guestName,
  12. String? guestPhone,
  13. String? notes,
  14. List<String>? adminUserIds,
  15. List<String>? addAdminUserIds,
  16. List<String>? removeAdminUserIds,
})

Implementation

UHotelReservationUpdateParams({
  required this.id,
  this.detail1,
  this.detail2,
  this.addTags,
  this.removeTags,
  this.tags,
  this.checkInDate,
  this.checkOutDate,
  this.guestCount,
  this.totalPrice,
  this.guestName,
  this.guestPhone,
  this.notes,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});