Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 3.22 KB

OrderCalculatedItem.md

File metadata and controls

29 lines (26 loc) · 3.22 KB

# OrderCalculatedItem

Properties

Name Type Description Notes
id string Unique identifier of the order line item. [optional]
skuId string Unique identifier of the SKU. It is assigned by Voucherify. [optional]
productId string Unique identifier of the product. It is assigned by Voucherify. [optional]
relatedObject string Used along with the source_id property, can be set to either sku or product. [optional]
sourceId string The merchant's product/SKU ID (if it is different from the Voucherify product/SKU ID). It is useful in the integration between multiple systems. It can be an ID from an eCommerce site, a database, or a third-party service. [optional]
quantity int The quantity of the particular item in the cart. [optional]
discountQuantity int Number of dicounted items. [optional]
initialQuantity int A positive integer in the smallest unit quantity representing the total amount of the order; this is the sum of the order items' quantity. [optional]
amount int The total amount of the order item (price * quantity). [optional]
discountAmount int Sum of all order-item-level discounts applied to the order. [optional]
appliedDiscountAmount int This field shows the order-level discount applied. [optional]
appliedDiscountQuantity int Number of the discounted items applied in the transaction. [optional]
appliedQuantity int Quantity of items changed by the application of a new quantity items. It can be positive when an item is added or negative if an item is replaced. [optional]
appliedQuantityAmount int Amount for the items changed by the application of a new quantity items. It can be positive when an item is added or negative if an item is replaced. [optional]
initialAmount int A positive integer in the smallest currency unit (e.g. 100 cents for $1.00) representing the total amount of the order. This is the sum of the order items' amounts. [optional]
price int Unit price of an item. Value is multiplied by 100 to precisely represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
subtotalAmount int Final order item amount after the applied item-level discount. If there are no item-level discounts applied, this item is equal to the `amount`. `subtotal_amount`=`amount`-`applied_discount_amount` [optional]
product \OpenAPI\Client\Model\OrderCalculatedItemProduct [optional]
sku \OpenAPI\Client\Model\OrderCalculatedItemSku [optional]
object string The type of the object represented by JSON. [optional] [default to 'order_item']
metadata object A set of custom key/value pairs that you can attach to an SKU. It can be useful for storing additional information about the SKU in a structured format. [optional]

[Back to Model list] [Back to API list] [Back to README]