/** * Serializer for course creation/update request body. */ export type CourseCreateUpdate = { /** * The unique identifier for the course */ course_id: string; /** * The organization associated with the course */ org: string; /** * The name of the course */ name?: string; /** * The slug for the course */ slug?: string; /** * Additional course data */ data?: any; };