import * as $dara from '@darabonba/typescript'; export declare class QueryIpcQuotaResponseBodyIpcQuotaInfos extends $dara.Model { /** * @remarks * Capability. Valid values: * * - understand: understanding * * - understand-reid: understanding with reid * * - search: search * * @example * understand */ capability?: string; /** * @remarks * Consumed quota. * * @example * 32 */ consumedQuota?: number; /** * @remarks * Corresponding time. UTC time in the format: yyyy-MM-ddTHH:mm:ssZ. * * @example * 2025-12-21T16:00:00Z */ dateTime?: string; /** * @remarks * Maximum available quota. * * @example * 10000 */ maxQuota?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryIpcQuotaResponseBody extends $dara.Model { /** * @remarks * List of IPC usage information. */ ipcQuotaInfos?: QueryIpcQuotaResponseBodyIpcQuotaInfos[]; /** * @remarks * Request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * Total number of records. * * @example * 39 */ total?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }