Allow full guest count fields on booking create
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s
This commit is contained in:
@@ -95,6 +95,9 @@ class BookingFlow(
|
||||
mode
|
||||
},
|
||||
adultCount = request.adultCount,
|
||||
childCount = request.childCount,
|
||||
maleCount = request.maleCount,
|
||||
femaleCount = request.femaleCount,
|
||||
totalGuestCount = request.totalGuestCount,
|
||||
notes = request.notes,
|
||||
createdBy = actor,
|
||||
|
||||
@@ -20,6 +20,9 @@ data class BookingCreateRequest(
|
||||
val guestPhoneE164: String? = null,
|
||||
val transportMode: String? = null,
|
||||
val adultCount: Int? = null,
|
||||
val childCount: Int? = null,
|
||||
val maleCount: Int? = null,
|
||||
val femaleCount: Int? = null,
|
||||
val totalGuestCount: Int? = null,
|
||||
val notes: String? = null
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user