UHotelUpdateParams constructor

UHotelUpdateParams({
  1. required String id,
  2. String? detail1,
  3. String? detail2,
  4. List<int>? addTags,
  5. List<int>? removeTags,
  6. List<int>? tags,
  7. String? title,
  8. String? cityCode,
  9. int? stars,
  10. String? address,
  11. String? phoneNumber,
  12. String? email,
  13. String? description,
  14. String? policies,
  15. String? checkInTime,
  16. String? checkOutTime,
  17. List<String>? amenities,
  18. List<String>? adminUserIds,
  19. List<String>? addAdminUserIds,
  20. List<String>? removeAdminUserIds,
})

Implementation

UHotelUpdateParams({
  required this.id,
  this.detail1,
  this.detail2,
  this.addTags,
  this.removeTags,
  this.tags,
  this.title,
  this.cityCode,
  this.stars,
  this.address,
  this.phoneNumber,
  this.email,
  this.description,
  this.policies,
  this.checkInTime,
  this.checkOutTime,
  this.amenities,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});