Field | Type | Description |
---|---|---|
method | String | String enumarion of 'delivery', 'takeout', 'latch' |
date | Date | Date when the consumer will collect his order or when the order will get delivered |
time | Time | Time in HH:MM format |
end_time | Time | Optional. If set, the order will get delivered/collected between time and end_time, instead of an exact time. |
address | Address.simple | Optional. Location where the order will get collected or delivered |
notes | String? | Optional. Nullable. The notes field is provided if method equals 'delivery'. The value can be null. If set contains the delivery notes |
{
"method": "delivery",
"date": "2019-01-31",
"time": "12:00",
"end_time": "12:00",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
},
"notes": "..."
}