Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

workweek-config.md

File metadata and controls

32 lines (23 loc) · 1.31 KB

Workweek Config

Sets the day of the week and hour of the day that a business starts a workweek. This is used to calculate overtime pay.

Structure

WorkweekConfig

Fields

Name Type Tags Description
id string | undefined Optional The UUID for this object.
startOfWeek string Required The days of the week.
startOfDayLocalTime string Required The local time at which a business week starts. Represented as a
string in HH:MM format (HH:MM:SS is also accepted, but seconds are
truncated).
Constraints: Minimum Length: 1
version number | undefined Optional Used for resolving concurrency issues. The request fails if the version
provided does not match the server version at the time of the request. If not provided,
Square executes a blind write; potentially overwriting data from another
write.
createdAt string | undefined Optional A read-only timestamp in RFC 3339 format; presented in UTC.
updatedAt string | undefined Optional A read-only timestamp in RFC 3339 format; presented in UTC.

Example (as JSON)

{
  "id": null,
  "start_of_week": "MON",
  "start_of_day_local_time": "start_of_day_local_time6",
  "version": null
}