/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for course suggestion details */ export type CourseSuggestionDetail = { /** * The unique identifier for the suggestion */ id: number; /** * The ID of the user receiving the suggestion */ user_id: number; /** * The username of the user receiving the suggestion */ username: string; /** * The full name of the user receiving the suggestion */ name: string; /** * The platform key associated with the suggestion */ platform_key: string; /** * Whether the suggestion has been accepted by the user */ accepted: boolean; /** * Whether the suggestion is visible to the user */ visible: boolean; /** * When the suggestion was created */ created: string; /** * When the suggestion was last modified */ modified: string; /** * Additional metadata for the suggestion */ metadata: Record; /** * The course ID being suggested */ course_id: string; /** * The name of the course being suggested */ course_name: string; };