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

    Interface GetPendingBuyerInvoiceOrderListResponse

    Response for getting pending buyer invoice order list

    interface GetPendingBuyerInvoiceOrderListResponse {
        error: string;
        message: string;
        request_id: string;
        response: { more: boolean; next_cursor: string; order_sn_list: string[] };
        result?: { more: boolean; next_cursor: string; order_sn_list: string[] };
    }

    Hierarchy (View Summary)

    • FetchResponse<{ more: boolean; next_cursor: string; order_sn_list: string[] }>
      • GetPendingBuyerInvoiceOrderListResponse
    Index

    Properties

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

    Type Declaration

    • more: boolean

      Indicates whether the order 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

    • order_sn_list: string[]

      The list of order serial numbers

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

    Type Declaration

    • more: boolean

      Indicates whether the order 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

    • order_sn_list: string[]

      The list of order serial numbers