import * as $dara from '@darabonba/typescript'; export declare class ListAIAgentInstanceRequest extends $dara.Model { /** * @remarks * The ID of the AI agent. * * This parameter is required. * * @example * 39f8e0bc005e4f309379701645f4*** */ AIAgentId?: string; /** * @remarks * The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. This parameter does not have a default value. * * @example * 2023-01-02T00:00:00Z */ endTime?: string; /** * @remarks * The page number. Default value: 1. Valid values: 1 to 100. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Default value: 10. Valid values: 0 to 100. * * @example * 10 */ pageSize?: number; /** * @remarks * The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. This parameter does not have a default value. * * @example * 2023-01-01T00:00:00Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }