ENUM

TimesheetEntryType

Timesheet entry type.

link GraphQL Schema definition

1enum TimesheetEntryType {
2
3# Entry created manually by setting start and end.
4MANUAL
5
6# Entry created for holidays.
7PUBLIC_HOLIDAY
8
9# Entry created for time offs.
10TIME_OF
11
12# Break entry.
13BREAK
14
15# Entry created by using tracker.
16TRACKER
17
18# Entry created by the pre-fill process.
19PREFILL
20}