/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for ProgramSuggestionManagementView POST endpoint */ export type ProgramSuggestionCreate = { /** * The platform for the suggestion */ platform_key: string; /** * The organization identifier for the platform */ platform_org?: string; /** * The program key to suggest */ program_key: string; /** * The user to suggest the program to */ user_id: string; /** * The username of the user to suggest the program to */ username?: string; /** * The email of the user to suggest the program to */ email?: string; /** * The user who suggested the program */ suggested_by?: string; /** * Whether the suggestion is direct */ direct?: boolean; /** * Flag to ensure department admins can call the API */ department_mode?: boolean; /** * Whether the suggestion is accepted */ accepted?: boolean; /** * Whether the suggestion is visible */ visible?: boolean; /** * Additional suggestion metadata */ metadata?: Record; };