The transaction status.

Transaction

interface Transaction {
    errors?: Error[];
    status: TransactionStatusEnum;
    transactionId: string;
}

Properties

errors?: Error[]

A list of error responses returned when a request is unsuccessful.

Transaction

Current processing status of the transaction.

Transaction

transactionId: string

The unique identifier returned in the 'transactionId' field in response to the post request of a specific transaction.

Transaction