INPUT_OBJECT

CreateInterviewTemplateInput

link GraphQL Schema definition

1input CreateInterviewTemplateInput {
4
2# Name of the template.
3name: String!
7
5# The team that the template is associated with
6teamId: ID
10
8# List of the Task IDs.
9taskIds: [ID!]!
13
11# Company ID.
12companyId: ID!
16
14# Recommended Level & Overall Evaluation settings of the feedback field.
15feedbackSettings: FeedbackSettingsInput
19
17# Each question of the interview template can have a custom max score.
18taskCustomScores: [TaskCustomScoreInput!]
23
20# Default interview expiration time for this template. Select between 1 and 336
21# hours inclusive.
22defaultExpirationTimeInHours: Int
24}

link Required by