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

    Interface TransactionDetails

    Full transaction details with payments

    interface TransactionDetails {
        amount: number;
        currency: string;
        date: TransactionDate;
        description: string;
        hiddenDescription?: string;
        lock?: TransactionLock;
        payments?: { attempts?: PaymentAttempt[] };
        posId: POSId;
        status: string;
        title: string;
        transactionId: TransactionId;
    }

    Hierarchy (View Summary)

    Index

    Properties

    amount: number
    currency: string
    description: string
    hiddenDescription?: string
    payments?: { attempts?: PaymentAttempt[] }
    posId: POSId
    status: string
    title: string
    transactionId: TransactionId