Skip to main content

Initialize Order


Method#

This method initiates a request to book a parking location

suspend fun initOrder(initOrderBody: InitOrderBody): InitOrderResponse

Request Model#

Represents the structure of the InitOrderBody object required to initialize a booking request.

data class InitOrderBody(    val itemId: String?,     val vehicleId: String,     val bookingStartDateTime: String,     val bookingEndDateTime: String)