OBJECT

ConversationSolution

Solution submitted to a conversation question.

link GraphQL Schema definition

1type ConversationSolution implements TaskSolution {
2
3id: ID!
4
5# The conversation transcript, in chronological order.
6transcript: [ConversationMessage!]!
7
8# The medium the conversation was conducted in.
9modality: ConversationModality
10
11# A standalone URL to the conversation audio recording, when available.
12audioUrl: String
13
14# Whether the test taker reached the end of the conversation.
15conversationFinished: Boolean
16
17# AI grading result, or null when the answer was not AI-graded.
18aiGrading: AiGradingResult
19
20}

link Required by

This element is not required by anyone