UHotelReservationCreateParams constructor
UHotelReservationCreateParams({
- required List<
int> tags, - required DateTime checkInDate,
- required DateTime checkOutDate,
- required int guestCount,
- required String userId,
- required String roomId,
- double? totalPrice,
- String? guestName,
- String? guestPhone,
- String? notes,
- int? penaltyPrecentEveryDate,
- String? detail1,
- String? detail2,
- String? id,
- String? creatorId,
- List<
String> ? adminUserIds,
Implementation
UHotelReservationCreateParams({
required this.tags,
required this.checkInDate,
required this.checkOutDate,
required this.guestCount,
required this.userId,
required this.roomId,
this.totalPrice,
this.guestName,
this.guestPhone,
this.notes,
this.penaltyPrecentEveryDate,
this.detail1,
this.detail2,
this.id,
this.creatorId,
this.adminUserIds,
});