Class: TencentCloud::Rum::V20210622::DescribeTawAreasResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Rum::V20210622::DescribeTawAreasResponse
- Defined in:
- lib/v20210622/models.rb
Overview
DescribeTawAreas返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, areaset = nil, requestid = nil) ⇒ DescribeTawAreasResponse
constructor
A new instance of DescribeTawAreasResponse.
Constructor Details
#initialize(totalcount = nil, areaset = nil, requestid = nil) ⇒ DescribeTawAreasResponse
Returns a new instance of DescribeTawAreasResponse.
3375 3376 3377 3378 3379 |
# File 'lib/v20210622/models.rb', line 3375 def initialize(totalcount=nil, areaset=nil, requestid=nil) @TotalCount = totalcount @AreaSet = areaset @RequestId = requestid end |
Instance Attribute Details
#AreaSet ⇒ Object
3373 3374 3375 |
# File 'lib/v20210622/models.rb', line 3373 def AreaSet @AreaSet end |
#RequestId ⇒ Object
3373 3374 3375 |
# File 'lib/v20210622/models.rb', line 3373 def RequestId @RequestId end |
#TotalCount ⇒ Object
3373 3374 3375 |
# File 'lib/v20210622/models.rb', line 3373 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 |
# File 'lib/v20210622/models.rb', line 3381 def deserialize(params) @TotalCount = params['TotalCount'] unless params['AreaSet'].nil? @AreaSet = [] params['AreaSet'].each do |i| rumareainfo_tmp = RumAreaInfo.new rumareainfo_tmp.deserialize(i) @AreaSet << rumareainfo_tmp end end @RequestId = params['RequestId'] end |