OBJECT

LiveInterview

A live interview defines a collaboration programming session.

link GraphQL Schema definition

1type LiveInterview {
2
3# Live interview ID.
4id: ID!
5
6# Email of the candidate.
7candidateEmail: String
8
9# Full name of the candidate.
10candidateName: String
11
12# Status of the live interview.
13status: LiveInterviewStatus!
14
15# Interviewers' feedback about the candidate.
16interviewersFeedback: [InterviewerFeedback]
17
18# Interviewer's feedback about the candidate.
19feedback: LiveInterviewFeedback @deprecated( reason: "Use 'interviewersFeedback'." )
20
21# The date the interview started.
22startDate: Timestamp
23
24# The date the interview finished.
25finishDate: Timestamp
26
27# Direct link to the interview.
28url: String!
29
30# Shortened URL for the interview.
31shortenedUrl: String!
32
33# IP Monitoring. Tracks user's location based on their IP address.
34trackCandidateLocation: Boolean
35
36# Disable description copy. Candidates won't be able to copy description or its
37# part from the UI.
38disableDescriptionCopy: Boolean
39
40# The company that owns this live interview.
41#
42# - Cost complexity: 1
43company: Company!
44
45}

link Required by