import * as $dara from '@darabonba/typescript'; export declare class SearchRetcodeAppByPageResponseBodyPageBeanRetcodeAppsTags extends $dara.Model { /** * @remarks * The tag key. * * @example * TestKey */ key?: string; /** * @remarks * The tag value. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchRetcodeAppByPageResponseBodyPageBeanRetcodeApps extends $dara.Model { /** * @remarks * The ID of the application. The parameter is an auto-increment parameter. * * @example * 16064 */ appId?: number; /** * @remarks * The name of the application. * * @example * a3 */ appName?: string; /** * @remarks * The time when the task was created. * * @example * 1545363321000 */ createTime?: number; /** * @remarks * The alias of the application. * * @example * c1 */ nickName?: string; /** * @remarks * The process identifier (PID) of the application. * * @example * eb4zdose6v@9781be0f44d**** */ pid?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; /** * @remarks * The type of the application. Valid values: * * * `web`: web application * * `weex`: Weex mobile app * * `mini_dd`: DingTalk mini program * * `mini_alipay`: Alipay mini program * * `mini_wx`: WeChat mini program * * `mini_common`: mini program on other platforms * * @example * web */ retcodeAppType?: string; /** * @remarks * The tag. */ tags?: SearchRetcodeAppByPageResponseBodyPageBeanRetcodeAppsTags[]; /** * @remarks * The type of the monitoring task. Valid values: * * * `TRACE`: Application Monitoring * * `RETCODE`: Browser Monitoring * * @example * RETCODE */ type?: string; /** * @remarks * The time when the task was updated. * * @example * 1545363321000 */ updateTime?: number; /** * @remarks * The user ID. * * @example * 12341234 */ userId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchRetcodeAppByPageResponseBodyPageBean extends $dara.Model { /** * @remarks * The page number of the returned page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries returned per page. * * @example * 2 */ pageSize?: number; /** * @remarks * The browser monitoring tasks that are returned. */ retcodeApps?: SearchRetcodeAppByPageResponseBodyPageBeanRetcodeApps[]; /** * @remarks * The total number of returned entries. * * @example * 8 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchRetcodeAppByPageResponseBody extends $dara.Model { /** * @remarks * The returned page information. */ pageBean?: SearchRetcodeAppByPageResponseBodyPageBean; /** * @remarks * The request ID. * * @example * 626037F5-FDEB-45B0-804C-B3C92797A64E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }