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.
10317 10318 10319 10320 10321 10322 10323 10324 10325 |
# File 'lib/v20180801/models.rb', line 10317 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
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def DataInfoList @DataInfoList end |
#OrderParam ⇒ Object
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def OrderParam @OrderParam end |
#PageNum ⇒ Object
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def PageNum @PageNum end |
#PageSize ⇒ Object
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def PageSize @PageSize end |
#RequestId ⇒ Object
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def RequestId @RequestId end |
#TotalNum ⇒ Object
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
10315 10316 10317 |
# File 'lib/v20180801/models.rb', line 10315 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 |
# File 'lib/v20180801/models.rb', line 10327 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 |