Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 1.43 KB

Product.md

File metadata and controls

14 lines (13 loc) · 1.43 KB

SumUpRestApi.Product

Properties

Name Type Description Notes
name String Name of the product from the merchant's catalog. [optional]
price Number Price of the product without VAT. [optional]
vatRate Number VAT rate applicable to the product. [optional]
singleVatAmount 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`). [optional]
priceWithVat Number Price of a single product item with VAT. [optional]
vatAmount 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`). [optional]
quantity Number Number of product items for the purchase. [optional]
totalPrice Number Total price of the product items without VAT (calculated as the product of `price` and `quantity`, i.e. `total_price = price * quantity`). [optional]
totalWithVat 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`). [optional]