Shopee SDK API Reference - v1.11.0
    Preparing search index...

    Interface GetBookingListResponse

    Response for getting booking list

    interface GetBookingListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            booking_list: BookingListItem[];
            more: boolean;
            next_cursor: string;
        };
        result?: {
            booking_list: BookingListItem[];
            more: boolean;
            next_cursor: string;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        booking_list: BookingListItem[];
        more: boolean;
        next_cursor: string;
    }

    Type Declaration

    • booking_list: BookingListItem[]

      The list of bookings

    • more: boolean

      Indicates whether the booking list is more than one page

    • next_cursor: string

      If more is true, you should pass the next_cursor in the next request as cursor

    result?: { booking_list: BookingListItem[]; more: boolean; next_cursor: string }

    Type Declaration

    • booking_list: BookingListItem[]

      The list of bookings

    • more: boolean

      Indicates whether the booking list is more than one page

    • next_cursor: string

      If more is true, you should pass the next_cursor in the next request as cursor