/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for CourseSuggestionBulkManagementView POST endpoint */ export type CourseSuggestionBulkCreate = { /** * The platform for the suggestions */ platform_key: string; /** * List of suggestion data objects, each containing course_id, user_id, etc. */ suggestion_data: Array>; /** * Flag to ensure department admins can call the API */ department_mode?: boolean; };