/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { LtiMentorCourseXBlock } from './LtiMentorCourseXBlock'; export type LtiMentor = { readonly id: number; /** * The name of the mentor */ name: string; /** * The org of the mentor */ readonly org: string; /** * The course key */ readonly course_key: string; /** * Creation status: pending, building, ready, or failed */ readonly status: string; /** * When the status last changed */ readonly status_updated_at: string; /** * True when an in-flight build exceeded the stall timeout */ readonly stalled: boolean; mentor_config: LtiMentorCourseXBlock; /** * Platform key the requesting user belongs to */ platform_key: string; /** * When True, triggers an async create and reponds with a 202 instead of 201 */ async_create?: boolean; };