ExtendReservationResult
Represents the result of extending a reservation
type ExtendReservationResult {
success: Boolean!
expiresAt: DateTime
errorCode: ExtendReservationErrorCode
}
Fields
success ● Boolean!
True if the operation completed successfully. False if the operation failed and no valid result could be produced.
expiresAt ● DateTime
Expiration date/time of the active reservation. Only set if success is true.
errorCode ● ExtendReservationErrorCode
Optional structured details about the error. Null if success is true.
Example
{
"expiresAt": "2024-05-03T11:52:33Z"
}