@sumup/sdk
    Preparing search index...

    Type Alias TransactionMixinBase

    Details of the transaction.

    type TransactionMixinBase = {
        amount?: number;
        currency?: SumUp.Transactions.Currency;
        id?: string;
        installments_count?: number;
        payment_type?: "ECOM" | "RECURRING" | "BOLETO";
        status?: "SUCCESSFUL" | "CANCELLED" | "FAILED" | "PENDING";
        timestamp?: string;
        transaction_code?: string;
    }
    Index

    Properties

    amount?: number

    Total amount of the transaction.

    id?: string

    Unique ID of the transaction.

    installments_count?: number

    Current number of the installment for deferred payments.

    payment_type?: "ECOM" | "RECURRING" | "BOLETO"

    Payment type used for the transaction.

    status?: "SUCCESSFUL" | "CANCELLED" | "FAILED" | "PENDING"

    Current status of the transaction.

    timestamp?: string

    Date and time of the creation of the transaction. Response format expressed according to ISO8601 code.

    transaction_code?: string

    Transaction code returned by the acquirer/processing entity after processing the transaction.