Class: TencentCloud::Gaap::V20180529::DescribeCountryAreaMappingResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gaap::V20180529::DescribeCountryAreaMappingResponse
- Defined in:
- lib/v20180529/models.rb
Overview
DescribeCountryAreaMapping返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(countryareamappinglist = nil, requestid = nil) ⇒ DescribeCountryAreaMappingResponse
constructor
A new instance of DescribeCountryAreaMappingResponse.
Constructor Details
#initialize(countryareamappinglist = nil, requestid = nil) ⇒ DescribeCountryAreaMappingResponse
Returns a new instance of DescribeCountryAreaMappingResponse.
2441 2442 2443 2444 |
# File 'lib/v20180529/models.rb', line 2441 def initialize(countryareamappinglist=nil, requestid=nil) @CountryAreaMappingList = countryareamappinglist @RequestId = requestid end |
Instance Attribute Details
#CountryAreaMappingList ⇒ Object
2439 2440 2441 |
# File 'lib/v20180529/models.rb', line 2439 def CountryAreaMappingList @CountryAreaMappingList end |
#RequestId ⇒ Object
2439 2440 2441 |
# File 'lib/v20180529/models.rb', line 2439 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 |
# File 'lib/v20180529/models.rb', line 2446 def deserialize(params) unless params['CountryAreaMappingList'].nil? @CountryAreaMappingList = [] params['CountryAreaMappingList'].each do |i| countryareamap_tmp = CountryAreaMap.new countryareamap_tmp.deserialize(i) @CountryAreaMappingList << countryareamap_tmp end end @RequestId = params['RequestId'] end |