import * as $dara from '@darabonba/typescript'; export declare class UpdateEnvServiceMonitorResponseBodyData extends $dara.Model { /** * @remarks * Indicates whether targets are matched. * * @example * Match successful. */ matchedMsg?: string; /** * @remarks * The number of matched targets. * * @example * 1 */ matchedTargetCount?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateEnvServiceMonitorResponseBody 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?: UpdateEnvServiceMonitorResponseBodyData; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * 1A474FF8-7861-4D00-81B5-5BC3DA4E**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }