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