import * as $dara from '@darabonba/typescript'; export declare class CreateRetcodeAppResponseBodyRetcodeAppDataBeanTagsTags extends $dara.Model { key?: string; value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateRetcodeAppResponseBodyRetcodeAppDataBeanTags extends $dara.Model { tags?: CreateRetcodeAppResponseBodyRetcodeAppDataBeanTagsTags[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateRetcodeAppResponseBodyRetcodeAppDataBean extends $dara.Model { /** * @remarks * The application ID. * * @example * 135143 */ appId?: number; /** * @remarks * The process identifier (PID) of the application. * * @example * aokcdqn3ly@a195c6d6421**** */ pid?: string; /** * @remarks * The ID of the resource group. * * @example * rg-acfmxyexli2**** */ resourceGroupId?: string; tags?: CreateRetcodeAppResponseBodyRetcodeAppDataBeanTags; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateRetcodeAppResponseBody extends $dara.Model { /** * @remarks * The status code. The status code 200 indicates that the request was successful. If another status code is returned, the request failed. * * @example * 200 */ code?: number; /** * @remarks * The response parameters. * * @example * bdidt76ehx@d5cf1cd3f7df411 */ data?: string; /** * @remarks * The message returned. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * A5EC8221-08F2-4C95-9AF1-49FD998C647A */ requestId?: string; /** * @remarks * The information of the Browser Monitoring task. */ retcodeAppDataBean?: CreateRetcodeAppResponseBodyRetcodeAppDataBean; /** * @remarks * Indicates whether the call was successful. Valid values: * * - true: The call was successful. * - false: The call failed. * * @example * True */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }