/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for pathway suggestion details */ export type PathwaySuggestionDetail = { /** * The unique identifier for the suggestion */ id: number; /** * The ID of the user receiving the suggestion */ user_id: number; /** * The username of the user receiving the suggestion */ username: string; /** * The full name of the user receiving the suggestion */ name: string; /** * The platform key associated with the suggestion */ platform_key: string; /** * Whether the suggestion has been accepted by the user */ accepted: boolean; /** * Whether the suggestion is visible to the user */ 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; };