Add bookings list endpoint with status filter
Some checks failed
build-and-deploy / build-deploy (push) Failing after 29s

This commit is contained in:
androidlover5842
2026-01-29 09:48:15 +05:30
parent 5705253481
commit 22b996cdf2
3 changed files with 72 additions and 0 deletions

View File

@@ -35,6 +35,24 @@ data class BookingCreateResponse(
val expectedCheckOutAt: String?
)
data class BookingListItem(
val id: UUID,
val status: String,
val guestId: UUID?,
val source: String?,
val expectedCheckInAt: String?,
val expectedCheckOutAt: String?,
val checkInAt: String?,
val checkOutAt: String?,
val adultCount: Int?,
val childCount: Int?,
val maleCount: Int?,
val femaleCount: Int?,
val totalGuestCount: Int?,
val expectedGuestCount: Int?,
val notes: String?
)
data class BookingLinkGuestRequest(
val guestId: UUID
)