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