Class: TencentCloud::Ecm::V20190719::DescribeRegionIpv6AddressesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ecm::V20190719::DescribeRegionIpv6AddressesResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribeRegionIpv6Addresses返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, addressset = nil, requestid = nil) ⇒ DescribeRegionIpv6AddressesResponse
constructor
A new instance of DescribeRegionIpv6AddressesResponse.
Constructor Details
#initialize(totalcount = nil, addressset = nil, requestid = nil) ⇒ DescribeRegionIpv6AddressesResponse
Returns a new instance of DescribeRegionIpv6AddressesResponse.
4185 4186 4187 4188 4189 |
# File 'lib/v20190719/models.rb', line 4185 def initialize(totalcount=nil, addressset=nil, requestid=nil) @TotalCount = totalcount @AddressSet = addressset @RequestId = requestid end |
Instance Attribute Details
#AddressSet ⇒ Object
4183 4184 4185 |
# File 'lib/v20190719/models.rb', line 4183 def AddressSet @AddressSet end |
#RequestId ⇒ Object
4183 4184 4185 |
# File 'lib/v20190719/models.rb', line 4183 def RequestId @RequestId end |
#TotalCount ⇒ Object
4183 4184 4185 |
# File 'lib/v20190719/models.rb', line 4183 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 |
# File 'lib/v20190719/models.rb', line 4191 def deserialize(params) @TotalCount = params['TotalCount'] unless params['AddressSet'].nil? @AddressSet = [] params['AddressSet'].each do |i| address_tmp = Address.new address_tmp.deserialize(i) @AddressSet << address_tmp end end @RequestId = params['RequestId'] end |