import * as $dara from '@darabonba/typescript'; export declare class UntagResourcesResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * PARAM_ERROR */ code?: string; /** * @remarks * The data returned. * * @example * true */ data?: boolean; /** * @remarks * The error message returned. * * @example * This API is not applicable for caller. */ message?: string; /** * @remarks * The ID of the request. * * @example * C7C15585-8349-4C62-BEE4-5A391841B9BE */ requestId?: string; /** * @remarks * Indicates whether the request is successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }