/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for program group suggestion details */ export type ProgramGroupSuggestionDetail = { /** * The unique identifier for the group suggestion */ id: number; /** * The ID of the group receiving the suggestion */ group_id: number; /** * The name of the group receiving the suggestion */ group_name: string; /** * The platform key associated with the suggestion */ platform_key: string; /** * Whether the suggestion has been accepted */ accepted: boolean; /** * Whether the suggestion is visible */ visible: boolean; /** * When the suggestion was created */ created: string; /** * When the suggestion was last modified */ modified: string; /** * Additional metadata for the suggestion */ metadata: Record; /** * The program key being suggested */ program_key: string; /** * The name of the program being suggested */ program_name: string; /** * Number of users in the group */ user_count: number; };