@sumup/sdk
    Preparing search index...

    Type Alias Product

    Purchase product.

    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

    Properties

    name?: string

    Product name.

    price?: number

    Product price.

    price_label?: string

    Product description.

    price_with_vat?: number

    Product price incl. VAT.

    quantity?: number

    Product quantity.

    single_vat_amount?: number

    VAT amount for a single product.

    total_price?: number

    Quantity x product price.

    total_with_vat?: number

    Total price incl. VAT.

    vat_amount?: number

    VAT amount.

    vat_rate?: number

    VAT percentage.