Type alias PaymentTransactionFetchResponse

PaymentTransactionFetchResponse: {
    code: string;
    data: PaymentTransactionResultObject;
    message: string;
    status: string;
}

Represents the payment transaction fetch response.

Type declaration

  • code: string

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

  • data: PaymentTransactionResultObject

    The fetched payment transaction object.

  • 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