import * as $dara from '@darabonba/typescript'; import { IMBotInfo } from "./ImbotInfo"; export declare class IMBotResult extends $dara.Model { /** * @remarks * OK 表示成功 */ code?: string; data?: IMBotInfo; /** * @remarks * 与响应头 x-funagent-request-id 对应 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }