/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * 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; };