Class: TencentCloud::Live::V20180801::DescribeProvinceIspPlayInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeProvinceIspPlayInfoListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeProvinceIspPlayInfoList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(datainfolist = nil, stattype = nil, requestid = nil) ⇒ DescribeProvinceIspPlayInfoListResponse
constructor
A new instance of DescribeProvinceIspPlayInfoListResponse.
Constructor Details
#initialize(datainfolist = nil, stattype = nil, requestid = nil) ⇒ DescribeProvinceIspPlayInfoListResponse
Returns a new instance of DescribeProvinceIspPlayInfoListResponse.
9438 9439 9440 9441 9442 |
# File 'lib/v20180801/models.rb', line 9438 def initialize(datainfolist=nil, stattype=nil, requestid=nil) @DataInfoList = datainfolist @StatType = stattype @RequestId = requestid end |
Instance Attribute Details
#DataInfoList ⇒ Object
9436 9437 9438 |
# File 'lib/v20180801/models.rb', line 9436 def DataInfoList @DataInfoList end |
#RequestId ⇒ Object
9436 9437 9438 |
# File 'lib/v20180801/models.rb', line 9436 def RequestId @RequestId end |
#StatType ⇒ Object
9436 9437 9438 |
# File 'lib/v20180801/models.rb', line 9436 def StatType @StatType end |
Instance Method Details
#deserialize(params) ⇒ Object
9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 |
# File 'lib/v20180801/models.rb', line 9444 def deserialize(params) unless params['DataInfoList'].nil? @DataInfoList = [] params['DataInfoList'].each do |i| playstatinfo_tmp = PlayStatInfo.new playstatinfo_tmp.deserialize(i) @DataInfoList << playstatinfo_tmp end end @StatType = params['StatType'] @RequestId = params['RequestId'] end |