Class: TencentCloud::Live::V20180801::DescribeTopClientIpSumInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeTopClientIpSumInfoListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeTopClientIpSumInfoList返回参数结构体
Instance Attribute Summary collapse
- #DataInfoList ⇒ Object
- #OrderParam ⇒ Object
- #PageNum ⇒ Object
- #PageSize ⇒ Object
- #RequestId ⇒ Object
- #TotalNum ⇒ Object
- #TotalPage ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagenum = nil, pagesize = nil, orderparam = nil, totalnum = nil, totalpage = nil, datainfolist = nil, requestid = nil) ⇒ DescribeTopClientIpSumInfoListResponse
constructor
A new instance of DescribeTopClientIpSumInfoListResponse.
Constructor Details
#initialize(pagenum = nil, pagesize = nil, orderparam = nil, totalnum = nil, totalpage = nil, datainfolist = nil, requestid = nil) ⇒ DescribeTopClientIpSumInfoListResponse
Returns a new instance of DescribeTopClientIpSumInfoListResponse.
10386 10387 10388 10389 10390 10391 10392 10393 10394 |
# File 'lib/v20180801/models.rb', line 10386 def initialize(pagenum=nil, pagesize=nil, orderparam=nil, totalnum=nil, totalpage=nil, datainfolist=nil, requestid=nil) @PageNum = pagenum @PageSize = pagesize @OrderParam = orderparam @TotalNum = totalnum @TotalPage = totalpage @DataInfoList = datainfolist @RequestId = requestid end |
Instance Attribute Details
#DataInfoList ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def DataInfoList @DataInfoList end |
#OrderParam ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def OrderParam @OrderParam end |
#PageNum ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def PageNum @PageNum end |
#PageSize ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def PageSize @PageSize end |
#RequestId ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def RequestId @RequestId end |
#TotalNum ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
10384 10385 10386 |
# File 'lib/v20180801/models.rb', line 10384 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 |
# File 'lib/v20180801/models.rb', line 10396 def deserialize(params) @PageNum = params['PageNum'] @PageSize = params['PageSize'] @OrderParam = params['OrderParam'] @TotalNum = params['TotalNum'] @TotalPage = params['TotalPage'] unless params['DataInfoList'].nil? @DataInfoList = [] params['DataInfoList'].each do |i| clientipplaysuminfo_tmp = ClientIpPlaySumInfo.new clientipplaysuminfo_tmp.deserialize(i) @DataInfoList << clientipplaysuminfo_tmp end end @RequestId = params['RequestId'] end |