// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyVSwitchAttributeRequest extends $dara.Model { description?: string; ownerAccount?: string; ownerId?: number; regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * This parameter is required. */ vSwitchId?: string; vSwitchName?: string; static names(): { [key: string]: string } { return { description: 'Description', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', vSwitchId: 'VSwitchId', vSwitchName: 'VSwitchName', }; } static types(): { [key: string]: any } { return { description: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', vSwitchId: 'string', vSwitchName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }