UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

48 lines 793 B
/** * Product * * Purchase product. */ export type Product = { /** * Product name. */ name?: string; /** * Product description. */ price_label?: string; /** * Product price. */ price?: number; /** * VAT percentage. */ vat_rate?: number; /** * VAT amount for a single product. */ single_vat_amount?: number; /** * Product price incl. VAT. */ price_with_vat?: number; /** * VAT amount. */ vat_amount?: number; /** * Product quantity. */ quantity?: number; /** * Quantity x product price. */ total_price?: number; /** * Total price incl. VAT. */ total_with_vat?: number; }; //# sourceMappingURL=product.d.cts.map