/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for PathwayGroupSuggestionManagementView POST endpoint */ export type PathwayGroupSuggestionCreate = { /** * The platform for the group suggestion */ platform_key: string; /** * The organization identifier for the platform */ platform_org?: string; /** * The pathway UUID to suggest */ pathway_uuid: string; /** * The group to suggest the pathway 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; /** * Flag to ensure department admins can call the API */ department_mode?: boolean; };