%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 : |
# Time Range
Represents a generic time range. The start and end values are
represented in RFC 3339 format. Time ranges are customized to be
inclusive or exclusive based on the needs of a particular endpoint.
Refer to the relevant endpoint-specific documentation to determine
how time ranges are handled.
## Structure
`TimeRange`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `startAt` | `?string` | Optional | A datetime value in RFC 3339 format indicating when the time range<br>starts. | getStartAt(): ?string | setStartAt(?string startAt): void |
| `endAt` | `?string` | Optional | A datetime value in RFC 3339 format indicating when the time range<br>ends. | getEndAt(): ?string | setEndAt(?string endAt): void |
## Example (as JSON)
```json
{
"start_at": "start_at2",
"end_at": "end_at0"
}
```