A dictionary with fields
Field | Type | Description |
---|---|---|
shop | Dictionary | A dictionary with fields |
order_date | Date | Date in YYYY-MM-DD |
amount | Int | An integer value |
gram | Int | An integer value |
product_name | String | A String value |
matched_on | String | A String value |
multi | Bool | A boolean value |
price_unit | Int | An integer value |
price_unit_with_discount | Int | An integer value |
price_total | Int | An integer value |
price_total_with_discount | Int | An integer value |
currency | String | A String value |
country | String | A String value |
isop | Bool | A boolean value |
payment_method | String | A String value |
acquire_method | String | A String value |
customer_id | Int? | Nullable. An integer value |
{
"shop": {
"id": 14,
"name": "..."
},
"order_date": "2019-01-31",
"amount": 18,
"gram": 11,
"product_name": "...",
"matched_on": "...",
"multi": true,
"price_unit": 12,
"price_unit_with_discount": 11,
"price_total": 15,
"price_total_with_discount": 16,
"currency": "...",
"country": "...",
"isop": false,
"payment_method": "...",
"acquire_method": "...",
"customer_id": 19
}