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 and the results are being 14 # finalized. 15 16 17 # The test session has been completed by the test-taker and the results have been 18 # finalized. 19 20 21 # The test session has been deleted. 22 23 24 # The test session has been deleted and the test-taker's PII was removed. 25 26 27 # The test session has expired after not being started for a certain amount of 28 # time. 29 30 31 # Candidate has declined the invitation. 32 33 34 # The test session has been archived. 35 36 }