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# Automatic break entry.
16AUTOMATIC_BREAK
17
18# Entry created by using tracker.
19TRACKER
20
21# Entry created by the pre-fill process.
22PREFILL
23}