Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 606 Bytes

cancel-booking-request.md

File metadata and controls

23 lines (15 loc) · 606 Bytes

Cancel Booking Request

Structure

CancelBookingRequest

Fields

Name Type Tags Description Getter
IdempotencyKey String Optional A unique key to make this request an idempotent operation.
Constraints: Maximum Length: 255
String getIdempotencyKey()
BookingVersion Integer Optional The revision number for the booking used for optimistic concurrency. Integer getBookingVersion()

Example (as JSON)

{
  "idempotency_key": "idempotency_key0",
  "booking_version": 224
}