import type * as ElevenLabs from "../index"; export interface ProcedureAtVersionResponseModel { /** Procedure ID */ procedureId: string; /** Version ID of a version of the procedure. None for a procedure never versioned. */ versionId?: string; /** Procedure name */ name: string; /** Procedure content */ content: string; /** Procedure type */ type?: ElevenLabs.ProcedureType; /** When the agent should use this procedure. Empty string means this is a sub-procedure that should only start when another procedure references it. */ trigger?: string; }