@sumup/sdk
    Preparing search index...

    Type Alias Product

    Details of the product for which the payment is made.

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

    Properties

    name?: string

    Name of the product from the merchant's catalog.

    price?: number

    Price of the product without VAT.

    price_with_vat?: number

    Price of a single product item with VAT.

    quantity?: number

    Number of product items for the purchase.

    single_vat_amount?: number

    Amount of the VAT for a single product item (calculated as the product of price and vat_rate, i.e. single_vat_amount = price * vat_rate).

    total_price?: number

    Total price of the product items without VAT (calculated as the product of price and quantity, i.e. total_price = price * quantity).

    total_with_vat?: number

    Total price of the product items including VAT (calculated as the product of price_with_vat and quantity, i.e. total_with_vat = price_with_vat * quantity).

    vat_amount?: number

    Total VAT amount for the purchase (calculated as the product of single_vat_amount and quantity, i.e. vat_amount = single_vat_amount * quantity).

    vat_rate?: number

    VAT rate applicable to the product.