Fields when send to the api inside a request.
Field | Type | Description |
---|---|---|
amount | Int | An integer value |
persons | Int | An integer value |
gram | Int | An integer value |
comment | String | A String value |
product_id | Int | An integer value |
product_price_id | Int? | Nullable. An integer value |
shop_id | Int | An integer value |
option_ids | [Int] | Array of Int |
uploads | [CartUploadWithOptionSet] | Optional. Array of CartUploadWithOptionSet |
code | String | Optional. A String value |
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. |
shop | Shop.simple | |
options | [Option.detailed] | Array of Option.detailed |
uploads | [CartUploadWithOptionSet] | Optional. Array of CartUploadWithOptionSet |
code | String | Optional. A String value |
When used inside a request.
{
"amount": 10,
"persons": 19,
"gram": 19,
"comment": "...",
"product_id": 11,
"product_price_id": 14,
"shop_id": 17,
"option_ids": [
10,
13,
11
],
"uploads": [
{
"upload": {
"id": 19,
"url": "https://example.com"
},
"optionset_id": 14
},
{
"upload": {
"id": 17,
"url": "https://example.com"
},
"optionset_id": 15
},
{
"upload": {
"id": 11,
"url": "https://example.com"
},
"optionset_id": 17
}
],
"code": "..."
}
When returned in a response.
{
"amount": 15,
"persons": 15,
"gram": 15,
"comment": "...",
"product": {
"id": 17,
"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": 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": 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": true
}
],
"price_type": "PER_UNIT",
"target_price": false,
"price": {
"value": 10,
"currency": "EUR"
}
},
"product_price": {
"id": 16,
"name": "...",
"price": {
"value": 16,
"currency": "EUR"
}
},
"calculated_prices": {
"unit_price": {
"value": 11,
"currency": "EUR"
},
"price": {
"value": 17,
"currency": "EUR"
}
},
"discount_prices": {
"unit_price": {
"value": 10,
"currency": "EUR"
},
"price": {
"value": 18,
"currency": "EUR"
}
},
"shop": {
"id": 10,
"name": "Durward Larson",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"currency": "EUR"
},
"options": [
{
"id": 19,
"name": "...",
"price_change": {
"value": 16,
"currency": "EUR"
},
"optionset": {
"id": 12,
"name": "...",
"allow_attachment": false
}
},
{
"id": 19,
"name": "...",
"price_change": {
"value": 11,
"currency": "EUR"
},
"optionset": {
"id": 18,
"name": "...",
"allow_attachment": true
}
},
{
"id": 18,
"name": "...",
"price_change": {
"value": 10,
"currency": "EUR"
},
"optionset": {
"id": 12,
"name": "...",
"allow_attachment": false
}
}
],
"uploads": [
{
"upload": {
"id": 16,
"url": "https://example.com"
},
"optionset_id": 17
},
{
"upload": {
"id": 14,
"url": "https://example.com"
},
"optionset_id": 12
},
{
"upload": {
"id": 12,
"url": "https://example.com"
},
"optionset_id": 16
}
],
"code": "..."
}