Fields when send to the api inside a request.
Field | Type | Description |
---|
Fields when returned by the api in a response.
Field | Type | Description |
---|---|---|
amount | Int | An integer value |
persons | Int | An integer value |
gram | Int | An integer value |
comment | String | A String value |
product | Product.simple | |
product_price | ProductPrice.simple? | Nullable. |
calculated_prices | CartItemPrices | |
discount_prices | CartItemPrices? | Nullable. |
options | [Option.detailed] | Array of Option.detailed |
uploads | [CartUploadWithOptionSet] | Optional. Array of CartUploadWithOptionSet |
code | String | Optional. A String value |
When used inside a request.
[]
When returned in a response.
{
"amount": 11,
"persons": 13,
"gram": 15,
"comment": "...",
"product": {
"id": 16,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
}
],
"price_type": "PER_UNIT",
"target_price": true,
"price": 14
},
"product_price": {
"id": 14,
"name": "...",
"price": 15
},
"calculated_prices": {
"unit_price": 11,
"price": 10
},
"discount_prices": {
"unit_price": 18,
"price": 19
},
"options": [
{
"id": 16,
"name": "...",
"price_change": 15,
"optionset": {
"id": 11,
"name": "...",
"allow_attachment": true
}
},
{
"id": 19,
"name": "...",
"price_change": 10,
"optionset": {
"id": 14,
"name": "...",
"allow_attachment": true
}
},
{
"id": 18,
"name": "...",
"price_change": 16,
"optionset": {
"id": 10,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 18,
"url": "https://example.com"
},
"optionset_id": 19
},
{
"upload": {
"id": 14,
"url": "https://example.com"
},
"optionset_id": 18
},
{
"upload": {
"id": 15,
"url": "https://example.com"
},
"optionset_id": 16
}
],
"code": "..."
}