import type * as ElevenLabs from "../index"; export interface ConversationInitiationClientDataInternal { conversationConfigOverride?: ElevenLabs.ConversationConfigClientOverrideOutput; customLlmExtraBody?: Record; /** ID of the end user participating in this conversation (for agent owner's user identification) */ userId?: string; sourceInfo?: ElevenLabs.ConversationInitiationSourceInfo; /** ID of the agent branch to use for this conversation */ branchId?: string; /** Environment to use for resolving environment variables */ environment?: string; dynamicVariables?: Record; /** Configuration for which tools to mock and fallback behavior */ toolMockConfig?: ElevenLabs.OrchestratorToolMockBehaviorConfig; }