@tax1driver/ts-przelewy24
    Preparing search index...

    Interface TransactionWithRefunds

    Transaction with all associated refunds

    TransactionWithRefunds

    interface TransactionWithRefunds {
        amount: number;
        currency: string;
        orderId: number;
        refunds: RefundsCollection[];
        sessionId: string;
    }
    Index

    Properties

    amount: number

    Original transaction amount

    TransactionWithRefunds

    currency: string

    Transaction currency

    TransactionWithRefunds

    orderId: number

    Order ID from Przelewy24

    TransactionWithRefunds

    Array of refunds associated with this transaction

    TransactionWithRefunds

    sessionId: string

    Transaction session ID from the Partner's system

    TransactionWithRefunds