OBJECT

AttendanceStatement

Represents an attendance statement.

link GraphQL Schema definition

1type AttendanceStatement {
2
3# Expected time in seconds.
4expectedTime: Int
5
6# Tracked time in seconds.
7trackedTime: Int
8
9# Total time in seconds.
10totalTime: Int
11
12# Time spent on time-offs in seconds.
13timeOffTime: Int
14
15# Time spent on holidays in seconds.
16holidayTime: Int
17
18# Expected days.
19expectedDays: Float
20
21# Tracked days.
22trackedDays: Float
23
24# Total days.
25totalDays: Float
26
27# Balance in days.
28balanceInDays: Float
29
30# The most recent calculation method
31calculationMethod: CalculationMethod
32
33# Days spent on time-offs.
34timeOffDays: Float
35
36# Days spent on holidays.
37holidayDays: Float
38
39# Balance in seconds.
40balance: Int
41
42# Overtime in seconds.
43overtime: Int
44
45# Count of meal vouchers.
46mealVouchersCount: Int
47
48# User.
49user: User
50
51# Detailed tracked time per project.
52projects(
53dateFrom: Date,
54dateTo: Date,
55id: ID,
56filter: AttendanceStatementProjectsFilterInput
57): [CategorizedTrackedTime]
58
59}