import * as $dara from '@darabonba/typescript'; export declare class DescribeNotifyConfigResponseBody extends $dara.Model { audioOssPath?: string; /** * @example * http://customer.com/callback */ callbackUrl?: string; enableAudioRecording?: boolean; /** * @example * true */ enableNotify?: boolean; /** * @remarks * The event types. If this parameter is empty, all event types are selected. * * * agent_start: The agent is started. * * agent_stop: The agent is stopped. * * error: An error occurred. * * @example * agent_start,agent_stop,error */ eventTypes?: string; /** * @example * 7B117AF5-2A16-412C-B127-FA6175ED1AD0 */ requestId?: string; /** * @example * eyJhcHBpZCI6ICIxMjM0MTIzNxxxxx */ token?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }