import * as $dara from '@darabonba/typescript'; export declare class SendAIAgentDataChannelMessageRequest extends $dara.Model { /** * @remarks * The ID of the AI agent in the conversation. * * This parameter is required. * * @example * 39f8e0bc005e4f309379701645f4**** */ instanceId?: string; /** * @remarks * The DataChannel message you want to send. You must specify a JSON string. The value can be up to 8,192 characters in length. * * This parameter is required. * * @example * {"key":"value"} */ message?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }