@sumup/sdk
    Preparing search index...

    Type Alias TransactionBase

    Transaction Base

    Core details shared by transaction resources.

    type TransactionBase = {
        amount?: number;
        currency?: Currency;
        id?: string;
        installments_count?: number;
        payment_type?: PaymentType;
        status?: TransactionStatus;
        timestamp?: string;
        transaction_code?: string;
    }
    Index
    amount?: number

    Total amount of the transaction.

    currency?: Currency
    id?: string

    Unique identifier of the transaction.

    installments_count?: number

    Number of installments for a deferred payment.

    payment_type?: PaymentType
    timestamp?: string

    The timestamp of when the transaction was created.

    transaction_code?: string

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