@sumup/sdk
    Preparing search index...

    Type Alias Event

    Event

    High-level transaction event details.

    type Event = {
        amount?: number;
        deducted_amount?: number;
        deducted_fee_amount?: number;
        fee_amount?: number;
        id?: TransactionEventID;
        installment_number?: number;
        status?: TransactionEventStatus;
        timestamp?: string;
        transaction_id?: TransactionID;
        type?: TransactionEventType;
    }
    Index
    amount?: number

    Amount associated with the transaction event, in major units.

    deducted_amount?: number

    Amount deducted from the merchant for the event, in major units.

    deducted_fee_amount?: number

    Fee deducted from the merchant for the event, in major units.

    fee_amount?: number

    Fee associated with the transaction event, in major units.

    installment_number?: number

    Consecutive number of the installment associated with the event.

    timestamp?: string

    The timestamp of when the transaction event occurred.

    transaction_id?: TransactionID