import * as $dara from '@darabonba/typescript'; export declare class QueryIpcQuotaRequest extends $dara.Model { /** * @remarks * Capability. Default value is understand. Valid values: * * - understand: understanding * * - understand-reid: understanding with reid * * - search: search * * @example * understand */ capability?: string; /** * @remarks * End time. UTC time in the format: yyyy-MM-ddTHH:mm:ssZ. The difference between EndTime and StartTime must not exceed 180 days. * * @example * 2025-05-09T08:52:00Z */ endTime?: string; /** * @remarks * Page number for paging. Default Value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * Page size, which specifies the number of entries displayed per page. Default value is 10, and the maximum value is 50. * * @example * 10 */ pageSize?: number; /** * @remarks * Start Time. UTC time in the format: yyyy-MM-ddTHH:mm:ssZ. * * @example * 2025-05-08T08:52:00Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }