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