Skip to main content

AttendanceTimer

Attendance information of an user

type AttendanceTimer {
breakSeconds: Int!
isRunning: Boolean @deprecated
status: AttendanceStatus!
today: Int! @deprecated
workItem: TourWorkItem
workItemSeconds: Int
workSeconds: Int!
}

Fields

AttendanceTimer.breakSeconds ● Int! non-null scalar

Time in seconds since the start of the current break period. Returns 0, unless status is BREAK.

AttendanceTimer.isRunning ● Boolean deprecated scalar

DEPRECATED

No longer supported

True, if the attendance timer is currently running. (Deprecated) Use status instead.

AttendanceTimer.status ● AttendanceStatus! non-null enum

Indicating the employees current work status.

AttendanceTimer.today ● Int! deprecated non-null scalar

DEPRECATED

No longer supported

Time the employee worked today in minutes. (Deprecated) Use workSeconds.

AttendanceTimer.workItem ● TourWorkItem interface

The currently executed work item by the employee

AttendanceTimer.workItemSeconds ● Int scalar

The time since the start of the current work item in seconds

AttendanceTimer.workSeconds ● Int! non-null scalar

Time in seconds since the start of the current working period. Does not increase if the status is BREAK.

Member Of

User object