import * as $dara from '@darabonba/typescript'; export declare class GetRumDataForPageRequest extends $dara.Model { /** * @remarks * The group to which the application belongs. * * @example * default */ appGroup?: string; /** * @remarks * The page number. * * @example * 1 */ currentPage?: number; /** * @remarks * The beginning of the time range to query. The time is accurate to seconds. * * This parameter is required. * * @example * 1713774233 */ endTime?: number; /** * @remarks * The number of entries per page. * * @example * 20 */ pageSize?: number; /** * @remarks * The application ID. * * @example * iixxxjcnuk@582846f37****** */ pid?: string; /** * @remarks * A query statement that complies with the query syntax of Simple Log Service Logstore. For more information, see the parameters corresponding to this operation on the console page. * * This parameter is required. * * @example * * and app.id: xxxx@586810fbxxxx19f */ query?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The beginning of the time range to query. The time is accurate to seconds. * * This parameter is required. * * @example * 1713687833 */ startTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }