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; };