Contains the opening hours for a given takeout method, vending machine...
Field | Type | Description |
---|---|---|
name | String | Translated name of this takeout method or machine |
description | String? | Nullable. A String value |
type | String | String enumarion of 'open', 'takeout', 'delivery', 'latch' |
hours | [Hours] | Array of Hours |
{
"name": "...",
"description": "...",
"type": "open",
"hours": [
{
"days": "5",
"times": [
"08:26 - 11:20",
"08:26 - 11:20",
"08:26 - 11:20"
]
},
{
"days": "5",
"times": [
"08:25 - 18:45",
"08:25 - 18:45",
"08:25 - 18:45"
]
},
{
"days": "5",
"times": [
"09:51 - 13:30",
"09:51 - 13:30",
"09:51 - 13:30"
]
}
]
}