Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 738 Bytes

list-bookings-response.md

File metadata and controls

25 lines (17 loc) · 738 Bytes

List Bookings Response

Structure

ListBookingsResponse

Fields

Name Type Tags Description
bookings Booking[] | undefined Optional The list of targeted bookings.
cursor string | undefined Optional The pagination cursor to be used in the subsequent request to get the next page of the results. Stop retrieving the next page of the results when the cursor is not set.
Constraints: Maximum Length: 65536
errors Error[] | undefined Optional Errors that occurred during the request.

Example (as JSON)

{
  "bookings": null,
  "cursor": null,
  "errors": null
}