Last active
September 13, 2016 07:58
-
-
Save fadur/8c188e0a34f5695bc63aa1e84dd99bc5 to your computer and use it in GitHub Desktop.
cart_item
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"product_type": "Product", | |
"order_id": 12345, | |
"quantity": 1, | |
"sku": 101456, | |
"refference_id": 9373491, | |
"name": "adidas - ACE 16+ PureControl FG/AG Gr\u00f8n/Pink/Sort", | |
"price": "2299.00", | |
"currency_rate": "100.0", | |
"retail_price": "2499.00", | |
"vat_rate": 25, | |
"discounts": [{ | |
"discount_type": "voucher", | |
"value": 0, | |
"rate": 10, | |
}, { | |
"discount_type": "Some promotion", | |
"value": 0, | |
"rate": 10, | |
}] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<root> | |
<row> | |
<product_type>Product</product_type> | |
<order_id>12345</order_id> | |
<quantity>1</quantity> | |
<sku>101456</sku> | |
<refference_id>9373491</refference_id> | |
<name>adidas - ACE 16+ PureControl FG</name> | |
<price>2299.00</price> | |
<currency_rate>100.0</currency_rate> | |
<retail_price>2499.00</retail_price> | |
<vat_rate>25</vat_rate> | |
<discounts> | |
<discount_type>voucher</discount_type> | |
<value>0</value> | |
<rate>10</rate> | |
</discounts> | |
<discounts> | |
<discount_type>Some promotion</discount_type> | |
<value>0</value> | |
<rate>10</rate> | |
</discounts> | |
</row> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment