%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/square/square/doc/models/ |
Upload File : |
# Business Hours
Represents the hours of operation for a business location.
## Structure
`BusinessHours`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `periods` | [`?(BusinessHoursPeriod[])`](/doc/models/business-hours-period.md) | Optional | The list of time periods during which the business is open. There may be at most 10<br>periods per day. | getPeriods(): ?array | setPeriods(?array periods): void |
## Example (as JSON)
```json
{
"periods": [
{
"day_of_week": "MON",
"start_local_time": "start_local_time5",
"end_local_time": "end_local_time7"
},
{
"day_of_week": "SUN",
"start_local_time": "start_local_time6",
"end_local_time": "end_local_time8"
},
{
"day_of_week": "SAT",
"start_local_time": "start_local_time7",
"end_local_time": "end_local_time9"
}
]
}
```