OBJECT

WorkHours

Work hours.

link GraphQL Schema definition

1type WorkHours {
2
3# Work start hour in seconds from midnight.
4start: Int!
5
6# Work end hour in seconds from midnight.
7end: Int!
8
9# Break start hour in seconds from midnight.
10breakStart: Int
11
12# Break end hour in seconds from midnight.
13breakEnd: Int
14
15# Total work hours duration in seconds.
16duration: Int
17
18}