@sumup/sdk
    Preparing search index...

    Type Alias Product

    Product

    Product details associated with a transaction.

    type Product = {
        name?: string;
        price?: number;
        price_label?: string;
        price_with_vat?: number;
        quantity?: number;
        single_vat_amount?: number;
        total_price?: number;
        total_with_vat?: number;
        vat_amount?: number;
        vat_rate?: number;
    }
    Index
    name?: string

    Product name.

    price?: number

    Product price.

    price_label?: string

    Human-readable label for the product price.

    price_with_vat?: number

    Product price including VAT.

    quantity?: number

    Product quantity.

    single_vat_amount?: number

    VAT amount for a single product.

    total_price?: number

    Total price calculated as the product price multiplied by the quantity.

    total_with_vat?: number

    Total product price including VAT.

    vat_amount?: number

    Total VAT amount for the product quantity.

    vat_rate?: number

    VAT rate applied to the product price.