Add guest update endpoint
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-01-29 08:28:41 +05:30
parent e61393fc41
commit 708ab95a31
2 changed files with 38 additions and 0 deletions

View File

@@ -58,6 +58,13 @@ data class GuestCreateRequest(
val addressText: String? = null
)
data class GuestUpdateRequest(
val phoneE164: String? = null,
val name: String? = null,
val nationality: String? = null,
val addressText: String? = null
)
data class GuestVehicleRequest(
val vehicleNumber: String,
val bookingId: UUID