// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeEipAddressesResponseBodyEipAddressesEipAddressOperationLocksLockReason extends $dara.Model { lockReason?: string; static names(): { [key: string]: string } { return { lockReason: 'LockReason', }; } static types(): { [key: string]: any } { return { lockReason: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeEipAddressesResponseBodyEipAddressesEipAddressOperationLocks extends $dara.Model { lockReason?: DescribeEipAddressesResponseBodyEipAddressesEipAddressOperationLocksLockReason[]; static names(): { [key: string]: string } { return { lockReason: 'LockReason', }; } static types(): { [key: string]: any } { return { lockReason: { 'type': 'array', 'itemType': DescribeEipAddressesResponseBodyEipAddressesEipAddressOperationLocksLockReason }, }; } validate() { if(Array.isArray(this.lockReason)) { $dara.Model.validateArray(this.lockReason); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeEipAddressesResponseBodyEipAddressesEipAddress extends $dara.Model { allocationId?: string; allocationTime?: string; bandwidth?: string; chargeType?: string; eipBandwidth?: string; expiredTime?: string; instanceId?: string; instanceType?: string; internetChargeType?: string; ipAddress?: string; operationLocks?: DescribeEipAddressesResponseBodyEipAddressesEipAddressOperationLocks; regionId?: string; status?: string; static names(): { [key: string]: string } { return { allocationId: 'AllocationId', allocationTime: 'AllocationTime', bandwidth: 'Bandwidth', chargeType: 'ChargeType', eipBandwidth: 'EipBandwidth', expiredTime: 'ExpiredTime', instanceId: 'InstanceId', instanceType: 'InstanceType', internetChargeType: 'InternetChargeType', ipAddress: 'IpAddress', operationLocks: 'OperationLocks', regionId: 'RegionId', status: 'Status', }; } static types(): { [key: string]: any } { return { allocationId: 'string', allocationTime: 'string', bandwidth: 'string', chargeType: 'string', eipBandwidth: 'string', expiredTime: 'string', instanceId: 'string', instanceType: 'string', internetChargeType: 'string', ipAddress: 'string', operationLocks: DescribeEipAddressesResponseBodyEipAddressesEipAddressOperationLocks, regionId: 'string', status: 'string', }; } validate() { if(this.operationLocks && typeof (this.operationLocks as any).validate === 'function') { (this.operationLocks as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeEipAddressesResponseBodyEipAddresses extends $dara.Model { eipAddress?: DescribeEipAddressesResponseBodyEipAddressesEipAddress[]; static names(): { [key: string]: string } { return { eipAddress: 'EipAddress', }; } static types(): { [key: string]: any } { return { eipAddress: { 'type': 'array', 'itemType': DescribeEipAddressesResponseBodyEipAddressesEipAddress }, }; } validate() { if(Array.isArray(this.eipAddress)) { $dara.Model.validateArray(this.eipAddress); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeEipAddressesResponseBody extends $dara.Model { eipAddresses?: DescribeEipAddressesResponseBodyEipAddresses; pageNumber?: number; pageSize?: number; requestId?: string; totalCount?: number; static names(): { [key: string]: string } { return { eipAddresses: 'EipAddresses', pageNumber: 'PageNumber', pageSize: 'PageSize', requestId: 'RequestId', totalCount: 'TotalCount', }; } static types(): { [key: string]: any } { return { eipAddresses: DescribeEipAddressesResponseBodyEipAddresses, pageNumber: 'number', pageSize: 'number', requestId: 'string', totalCount: 'number', }; } validate() { if(this.eipAddresses && typeof (this.eipAddresses as any).validate === 'function') { (this.eipAddresses as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }