/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type Course = { /** * The edX course ID string for the course. */ readonly course_id: string; /** * The display name of the course. (Should match edX) */ readonly name: string; /** * An additional unique slug field. (Optional) */ readonly slug: string | null; org?: string; };