/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for pathway group suggestion details */ export type PathwayGroupSuggestionDetail = { /** * 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 pathway ID being suggested */ pathway_id: string; /** * The UUID of the pathway being suggested */ pathway_uuid: string; /** * The name of the pathway being suggested */ pathway_name: string; /** * The platform key associated with the pathway */ pathway_platform_key: string; /** * Number of users in the group */ user_count?: number; };