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 callback URL for receiving event notifications. This is not set by default. * * @example * http://customer.com/callback */ callbackUrl?: string; enableAudioRecording?: boolean; /** * @remarks * Specifies whether to enable or disable 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 subscribed to by default. Valid values: * * - agent_start * * - agent_stop * * - error * * @example * agent_start,agent_stop,error */ eventTypes?: string; /** * @remarks * An authentication token for event callbacks. The service includes this token in the `Authorization` header of each callback request. * * @example * eyJhcHBpZCI6ICIxMjM0MTIzNxxxxx */ token?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }