PaymentTransactionListResponse: {
    code: string;
    data: {
        count: number;
        limit: number;
        offset: number;
        transactions: PaymentTransactionResultObject[];
    };
    message: string;
    status: string;
}

Represents the payment transactions list response.

Type declaration

  • code: string

    The payment gateway response code. See Payment Response Codes for code descriptions.

  • data: {
        count: number;
        limit: number;
        offset: number;
        transactions: PaymentTransactionResultObject[];
    }

    Payment transaction results object.

    • count: number

      Total number of transactions matching the query.

    • limit: number

      Total number of transactions returned.

    • offset: number

      Total number of transactions skipped.

    • transactions: PaymentTransactionResultObject[]

      Array of fetched payment transaction objects that match the query.

  • message: string

    Message associated with the response code.

  • status: string

    The status of the transaction. Possible response values are 'ok' and 'error'.

Generated using TypeDoc