// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { code: 'Code', data: 'Data', message: 'Message', requestId: 'RequestId', success: 'Success', }; } static types(): { [key: string]: any } { return { code: 'string', data: 'boolean', message: 'string', requestId: 'string', success: 'boolean', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }