/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for ProgramGroupSuggestionManagementView POST endpoint */ export type ProgramGroupSuggestionCreate = { /** * The platform for the group suggestion */ platform_key: string; /** * The organization identifier for the platform */ platform_org?: string; /** * The program key to suggest */ program_key: string; /** * The group to suggest the program to */ group_id: number; /** * Whether the suggestion is accepted */ accepted?: boolean; /** * Whether the suggestion is visible */ visible?: boolean; /** * Additional suggestion metadata */ metadata?: Record; /** * Flag to ensure department admins can call the API */ department_mode?: boolean; };