import type { ProgramCoursePosition } from './ProgramCoursePosition'; export type ProgramSearch = { course_list: Array; /** * A unique program ID identifiable by edX. */ program_id: string; readonly program_key: string; /** * The verbose name of the program. */ name?: string; /** * Select if this program should be enabled. */ enabled?: boolean; /** * An additional unique slug field. (Optional) */ slug?: string | null; org?: string; readonly platform_key: string; readonly program_type: string; /** * Metadata */ data?: any; };