import * as $dara from '@darabonba/typescript'; import { AIAgentOutboundCallConfig } from "./AiagentOutboundCallConfig"; export declare class StartAIAgentOutboundCallRequest extends $dara.Model { /** * @remarks * This parameter is required. * * @example * ***********e4f309379701645f4**** */ AIAgentId?: string; /** * @remarks * This parameter is required. * * @example * 173*****533 */ calledNumber?: string; /** * @remarks * This parameter is required. * * @example * 183*****333 */ callerNumber?: string; config?: AIAgentOutboundCallConfig; imsAIAgentFreeObCall?: string; /** * @example * f213fbc005e4f309379701645f4**** */ sessionId?: string; userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }