/** * Serializer for an individual answer choice for a question. * * Attributes: * text (str): The text of the answer. * is_correct (Optional[bool]): Boolean indicating if this answer is correct. */ export type Answer = { text: string; is_correct?: boolean; };