import * as $dara from '@darabonba/typescript'; export declare class GetRumOcuStatisticDataResponseBodyData extends $dara.Model { /** * @remarks * Indicates whether the next page exists. * * @example * true */ complete?: boolean; /** * @remarks * The queried data. */ items?: { [key: string]: any; }[]; /** * @remarks * The page number. * * @example * 1 */ page?: number; /** * @remarks * The number of entries per page. * * @example * 100 */ pageSize?: number; /** * @remarks * The total number of entries returned. * * @example * 100 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetRumOcuStatisticDataResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * The returned struct. */ data?: GetRumOcuStatisticDataResponseBodyData; /** * @remarks * The error message returned if the request failed. * * @example * null */ message?: string; /** * @remarks * The request ID. * * @example * 626037F5-FDEB-45B0-804C-B3C92797**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }