import * as $dara from '@darabonba/typescript'; export declare class GetEventCallbackResponseBody extends $dara.Model { /** * @remarks * The authentication key. This parameter is returned only for HTTP callbacks. * * @example * TestKey001 */ authKey?: string; /** * @remarks * Specifies whether callback authentication is enabled. This parameter is returned only for **HTTP** callbacks. Valid values: * * * **on** * * **off** * * @example * on */ authSwitch?: string; /** * @remarks * The name of the Simple Message Queue (SMQ) queue to which callback messages are sent. * * @example * ice-callback-queue */ callbackQueueName?: string; /** * @remarks * The callback method. Valid values: * * * **HTTP** * * **MNS** * * @example * HTTP */ callbackType?: string; /** * @remarks * The callback URL to which event notifications are sent. * * @example * http://xxx.yyy/callback */ callbackURL?: string; /** * @remarks * The type of the callback event. Multiple values are separated with commas (,). For more information about callback event types, see [Event notification content](https://help.aliyun.com/document_detail/610204.html). * * @example * ProduceMediaComplete,TranscodeComplete */ eventTypeList?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }