import * as $dara from '@darabonba/typescript'; export declare class ListRetcodeAppsResponseBodyRetcodeAppsTags 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 ListRetcodeAppsResponseBodyRetcodeApps 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 * A1 */ appName?: string; /** * @remarks * The alias of the application monitored by Browser Monitoring. * * @example * B1 */ nickName?: string; /** * @remarks * The process identifier (PID) of the application. * * @example * atc889zkcf@d8deedfa9bf**** */ pid?: 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 tags of the task. */ tags?: ListRetcodeAppsResponseBodyRetcodeAppsTags[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRetcodeAppsResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 99A663CB-8D7B-4B0D-A006-03C8EE38E7BB */ requestId?: string; /** * @remarks * The list of applications monitored by Browser Monitoring. */ retcodeApps?: ListRetcodeAppsResponseBodyRetcodeApps[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }