A dictionary with fields
Field | Type | Description |
---|---|---|
max_per | String | String enumarion of 'hour', '30min', '15min', 'interval' |
max_amount | Int | An integer value |
days | Dictionary | These max order settings only apply to these days |
intervals | [Dictionary] | Array of Dictionary |
{
"max_per": "hour",
"max_amount": 17,
"days": {
"all": true,
"custom": [
14,
19,
12
]
},
"intervals": [
{
"max_amount": 11,
"start": "12:00",
"end": "12:00"
},
{
"max_amount": 18,
"start": "12:00",
"end": "12:00"
},
{
"max_amount": 17,
"start": "12:00",
"end": "12:00"
}
]
}