import * as $dara from '@darabonba/typescript'; import { IMBotMetadata } from "./ImbotMetadata"; export declare class IMBotInfo extends $dara.Model { /** * **if can be null:** * true */ agentRuntimeId?: string; botBizId?: string; /** * @remarks * dingtalk、wecom、feishu、custom */ botBizType?: string; /** * @remarks * standard、custom */ botMode?: string; botName?: string; createdAt?: string; /** * @remarks * 可选;来自账号元数据 scaling.currentInstances,同一租户下各 Bot 响应中值相同 * * **if can be null:** * true */ currentInstances?: number; /** * @remarks * Bot 描述信息 * * **if can be null:** * true */ description?: string; id?: string; imChannelServerResourceName?: string; /** * @remarks * 可选 * * **if can be null:** * true */ lastMessageTime?: string; /** * **if can be null:** * true */ metadata?: IMBotMetadata; status?: string; tenantId?: string; updatedAt?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }