ENUM

TestSessionStatus

The status of a test session.

link GraphQL Schema definition

1enum TestSessionStatus {
2
3# The test session has been created but not started.
4pending
5
6# The test-taker has started the test session.
7active
8
9# The test session is in the grace period where they can submit work before the
10# session time is up.
11gracePeriod
12
13# The test session has been completed by the test-taker.
14over
15
16# The test session has been deleted.
17deleted
18
19# The test session has expired after not being started for a certain amount of
20# time.
21expired
22
23# Candidate has declined the invitation.
24declined
25}