/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface AgentSummaryResponseModel { /** The ID of the agent */ agent_id: string; /** The name of the agent */ name: string; /** Agent tags used to categorize the agent */ tags: string[]; /** The creation time of the agent in unix seconds */ created_at_unix_secs: number; /** The access information of the agent */ access_info: ElevenLabs.ResourceAccessInfo; }