import * as $dara from '@darabonba/typescript'; export declare class SetNotifyConfigRequest extends $dara.Model { /** * @remarks * The ID of the AI agent. * * This parameter is required. * * @example * 39f8e0bc005e4f309379701645f4**** */ AIAgentId?: string; audioOssPath?: string; /** * @remarks * The URL for receiving callback notifications. By default, this parameter is left empty. * * @example * http://customer.com/callback */ callbackUrl?: string; enableAudioRecording?: boolean; /** * @remarks * Specifies whether to enable event notifications. * * This parameter is required. * * @example * true */ enableNotify?: boolean; /** * @remarks * The event types. If you do not specify this parameter, all event types are selected. * * * agent_start * * agent_stop * * error * * @example * agent_start,agent_stop,error */ eventTypes?: string; /** * @remarks * The authentication token for callback. The token is carried in the Authorization header of a callback request. By default, this parameter is left empty. * * @example * eyJhcHBpZCI6ICIxMjM0MTIzNxxxxx */ token?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }