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

    Interface GetBillingTransactionInfoResponse

    Response for get billing transaction info API

    interface GetBillingTransactionInfoResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            more: boolean;
            next_cursor: string;
            transactions: BillingTransaction[];
        };
        warning?: string
        | string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string

    Error code if any error occurred

    message: string

    Error message if any error occurred

    request_id: string

    The identifier for an API request for error tracking

    response: {
        more: boolean;
        next_cursor: string;
        transactions: BillingTransaction[];
    }

    Type Declaration

    • more: boolean

      Indicates whether there are more pages

    • next_cursor: string

      Next cursor for pagination

    • transactions: BillingTransaction[]

      List of billing transactions

    warning?: string | string[]

    Warning message or list of warning messages