OBJECT

TimeOffType

Represents a time off type.

link GraphQL Schema definition

1type TimeOffType {
2
3# Id.
4id: ID
5
6# Name.
7name: String
8
9# Indicates that time off requests of that type can be visible to team members.
10isVisible: Boolean
11
12# RGB color code.
13color: String
14
15}