// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyReservedInstanceAttributeResponseBody extends $dara.Model { /** * @remarks * Modifies the attributes of a reserved instance, such as its name and description. * * @example * 200 */ code?: string; /** * @remarks * The ID of the request. * * @example * 200 */ httpStatusCode?: number; /** * @remarks * The error message for this instance operation. The return value Success indicates that this operation is successful. For more information, see the "Error codes" section in this topic. * * @example * Success */ message?: string; /** * @remarks * The ID of the request. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3**** */ requestId?: string; static names(): { [key: string]: string } { return { code: 'Code', httpStatusCode: 'HttpStatusCode', message: 'Message', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { code: 'string', httpStatusCode: 'number', message: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }