@sumup/sdk
    Preparing search index...

    Type Alias TransactionHistory

    TransactionHistory: TransactionBase & TransactionMixinHistory & {
        card_type?: CardType;
        client_transaction_id?: string;
        payout_date?: string;
        payout_type?: "BANK_ACCOUNT" | "PREPAID_CARD";
        refunded_amount?: number;
        transaction_id?: TransactionID;
        type?: "PAYMENT" | "REFUND" | "CHARGE_BACK";
        user?: string;
    }

    Type Declaration

    • Optionalcard_type?: CardType
    • Optionalclient_transaction_id?: string

      Client-specific ID of the transaction.

    • Optionalpayout_date?: string

      Payout date (if paid out at once).

    • Optionalpayout_type?: "BANK_ACCOUNT" | "PREPAID_CARD"

      Payout type.

    • Optionalrefunded_amount?: number

      Total refunded amount.

    • Optionaltransaction_id?: TransactionID
    • Optionaltype?: "PAYMENT" | "REFUND" | "CHARGE_BACK"

      Type of the transaction for the registered user specified in the user property.

    • Optionaluser?: string

      Email address of the registered user (merchant) to whom the payment is made.