@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?: {
            name?: string;
            price?: string;
            price_with_vat?: string;
            quantity?: number;
            single_vat_amount?: string;
            total_price?: string;
            total_with_vat?: string;
            vat_amount?: string;
            vat_rate?: string;
        }[];
        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?: {
        name?: string;
        price?: string;
        price_with_vat?: string;
        quantity?: number;
        single_vat_amount?: string;
        total_price?: string;
        total_with_vat?: string;
        vat_amount?: string;
        vat_rate?: string;
    }[]

    Products

    Type Declaration

    • Optionalname?: string

      Product name

    • Optionalprice?: string

      Product price

    • Optionalprice_with_vat?: string

      Product price including VAT

    • Optionalquantity?: number

      Product quantity

    • Optionalsingle_vat_amount?: string

      VAT amount for a single product

    • Optionaltotal_price?: string

      Quantity x product price

    • Optionaltotal_with_vat?: string

      Total price including VAT

    • Optionalvat_amount?: string

      VAT amount

    • Optionalvat_rate?: string

      VAT rate

    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.