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