@sumup/sdk
    Preparing search index...

    Type Alias ReceiptTransaction

    Transaction information.

    type ReceiptTransaction = {
        amount?: string;
        card?: ReceiptCard;
        currency?: string;
        entry_mode?: string;
        events?: ReceiptEvent[];
        installments_count?: number;
        payment_type?: string;
        products?: {
            description?: string;
            name?: string;
            price?: number;
            quantity?: number;
            total_price?: number;
        }[];
        receipt_no?: string;
        status?: string;
        timestamp?: string;
        tip_amount?: string;
        transaction_code?: string;
        vat_amount?: string;
        vat_rates?: { gross?: number; net?: number; rate?: number; vat?: number }[];
        verification_method?: string;
    }
    Index

    Properties

    amount?: string

    Transaction amount.

    currency?: string

    Transaction currency.

    Optionalentry_mode

    entry_mode?: string

    Transaction entry mode.

    events?: ReceiptEvent[]

    Events

    installments_count?: number

    Number of installments.

    payment_type?: string

    Transaction type.

    products?: {
        description?: string;
        name?: string;
        price?: number;
        quantity?: number;
        total_price?: number;
    }[]

    Products

    Type declaration

    • Optionaldescription?: string

      Product description.

    • Optionalname?: string

      Product name.

    • Optionalprice?: number

      Product price.

    • Optionalquantity?: number

      Product quantity.

    • Optionaltotal_price?: number

      Quantity x product price.

    receipt_no?: string

    Receipt number

    status?: string

    Transaction processing status.

    timestamp?: string

    Time created at.

    tip_amount?: string

    Tip amount (included in transaction amount).

    transaction_code?: string

    Transaction code.

    vat_amount?: string

    Transaction VAT amount.

    vat_rates?: { gross?: number; net?: number; rate?: number; vat?: number }[]

    Vat rates.

    Type declaration

    • Optionalgross?: number

      Gross

    • Optionalnet?: number

      Net

    • Optionalrate?: number

      Rate

    • Optionalvat?: number

      Vat

    verification_method?: string

    Cardholder verification method.