/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for course group suggestion details */ export type CourseGroupSuggestionDetail = { /** * The unique identifier for the group suggestion */ id: number; /** * The ID of the group receiving the suggestion */ group_id: number; /** * The name of the group receiving the suggestion */ group_name: string; /** * The platform key associated with the suggestion */ platform_key: string; /** * Whether the suggestion has been accepted */ accepted?: boolean; /** * Whether the suggestion is visible */ 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; /** * Number of users in the group */ user_count?: number; };