UHotelReservationReadParams constructor

UHotelReservationReadParams({
  1. int? pageSize,
  2. int? pageNumber,
  3. DateTime? fromCreatedAt,
  4. DateTime? toCreatedAt,
  5. List<int>? tags,
  6. List<String>? ids,
  7. String? creatorId,
  8. String? userId,
  9. String? userName,
  10. String? roomId,
  11. String? hotelId,
  12. DateTime? checkInDate,
  13. DateTime? checkOutDate,
  14. bool? activeOnly,
  15. bool? upcomingOnly,
  16. bool? pastOnly,
  17. int? orderBy,
  18. HotelReservationSelectorArgs? selectorArgs,
})

Implementation

UHotelReservationReadParams({
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.tags,
  this.ids,
  this.creatorId,
  this.userId,
  this.userName,
  this.roomId,
  this.hotelId,
  this.checkInDate,
  this.checkOutDate,
  this.activeOnly,
  this.upcomingOnly,
  this.pastOnly,
  this.orderBy,
  this.selectorArgs,
});