// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyInstanceNetworkOptionsResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; /** * @remarks * The ID of the task for which the bandwidth weight is modified. * * You can use the [DescribeTaskAttribute](https://help.aliyun.com/document_detail/2679968.html) interface to modify the bandwidth weight result. * * @example * t-bp198jigq7l0h5ac**** */ taskId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', taskId: 'TaskId', }; } static types(): { [key: string]: any } { return { requestId: 'string', taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }