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": "string",
"description": "string",
"type": "open",
"hours": [
{
"days": "string",
"times": [
"string",
"string",
"string"
]
},
{
"days": "string",
"times": [
"string",
"string",
"string"
]
},
{
"days": "string",
"times": [
"string",
"string",
"string"
]
}
]
}