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.
9507 9508 9509 9510 9511 |
# File 'lib/v20180801/models.rb', line 9507 def initialize(datainfolist=nil, stattype=nil, requestid=nil) @DataInfoList = datainfolist @StatType = stattype @RequestId = requestid end |
Instance Attribute Details
#DataInfoList ⇒ Object
9505 9506 9507 |
# File 'lib/v20180801/models.rb', line 9505 def DataInfoList @DataInfoList end |
#RequestId ⇒ Object
9505 9506 9507 |
# File 'lib/v20180801/models.rb', line 9505 def RequestId @RequestId end |
#StatType ⇒ Object
9505 9506 9507 |
# File 'lib/v20180801/models.rb', line 9505 def StatType @StatType end |
Instance Method Details
#deserialize(params) ⇒ Object
9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 |
# File 'lib/v20180801/models.rb', line 9513 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 |