/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for course enrollment search results. */ export type CourseEnrollmentSearchResponse = { /** * User ID associated with the enrollment */ user_id: number; /** * Username associated with the enrollment */ username: string; /** * Email of the user */ email: string; /** * Course ID associated with the enrollment */ course_id: string; /** * Whether the enrollment is active */ active: boolean; /** * Date when enrollment began/activated */ created: string; /** * Date when enrollment started */ started: string | null; /** * Date when enrollment ended/deactivated */ ended: string | null; /** * Date when enrollment expires */ expired: string | null; /** * Enrollment specific metadata */ metadata: any; /** * Full name of the user */ name: string | null; /** * Name of the course */ course_name: string; };