// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyRouterInterfaceSpecRequest extends $dara.Model { clientToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * This parameter is required. */ routerInterfaceId?: string; /** * @remarks * This parameter is required. */ spec?: string; userCidr?: string; static names(): { [key: string]: string } { return { clientToken: 'ClientToken', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', routerInterfaceId: 'RouterInterfaceId', spec: 'Spec', userCidr: 'UserCidr', }; } static types(): { [key: string]: any } { return { clientToken: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', routerInterfaceId: 'string', spec: 'string', userCidr: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }