import * as $dara from '@darabonba/typescript'; export declare class StartAIAgentInstanceShrinkRequest extends $dara.Model { /** * @remarks * The ID of the AI agent created in the [IMS](https://ims.console.aliyun.com/ai/robot/list) console. * * This parameter is required. * * @example * 39f8e0bc005e4f309379701645f4**** */ AIAgentId?: string; agentConfigShrink?: string; /** * @remarks * 同步聊天记录配置。 */ chatSyncConfigShrink?: string; /** * @remarks * This parameter is required. */ runtimeConfigShrink?: string; /** * @example * f213fbc005e4f309379701645f4**** */ sessionId?: string; /** * @deprecated */ templateConfigShrink?: string; /** * @example * {"Email":"johndoe@example.com","Preferences":{"Language":"en"}} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }