/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for CourseGroupSuggestionManagementView POST endpoint */ export type CourseGroupSuggestionCreate = { /** * The platform for the group suggestion */ platform_key: string; /** * The course ID to suggest */ course_id: string; /** * The group to suggest the course to */ group_id: number; /** * Whether the suggestion is accepted */ accepted?: boolean; /** * Whether the suggestion is visible */ visible?: boolean; /** * Additional suggestion metadata */ metadata?: Record; /** * The user who suggested the group */ suggested_by?: string; /** * Whether the suggestion is direct */ direct?: boolean; /** * Flag to ensure department admins can call the API */ department_mode?: boolean; };