Booking Constraints
data class BookingConstraints(val minTimeSlot: Int? = null, val maxTimeSlot: Int? = null, val maxNumberOfBookingDay: Int? = null, val dateLimit: String? = null, val bookableDaysOfWeek: List<Int>? = null, val bookableDaysLimit: Int? = null, val weekConstraints: List<WeekConstraint>? = null) : Parcelable
Properties
Link copied to clipboard
It represents the maximum number of days (starting from the current day) to user can perform a reservation
Link copied to clipboard
Represents the list of days of the week in which the resource is bookable. Sunday = 1, Monday = 2, ..., Saturday = 7
Link copied to clipboard
represent the max number of day of consecutive booking for a single book
Link copied to clipboard
represent the max number of consecutive minutes for a single booking for a single book
Link copied to clipboard
number of minutes for the minimum time slot
Link copied to clipboard
Represents the list of bookable intervals by day of the week.