Class: TencentCloud::Live::V20180801::DescribePlayErrorCodeSumInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribePlayErrorCodeSumInfoListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribePlayErrorCodeSumInfoList返回参数结构体
Instance Attribute Summary collapse
- #PageNum ⇒ Object
- #PageSize ⇒ Object
- #ProIspInfoList ⇒ Object
- #RequestId ⇒ Object
- #TotalCode2xx ⇒ Object
- #TotalCode3xx ⇒ Object
- #TotalCode4xx ⇒ Object
- #TotalCode5xx ⇒ Object
- #TotalCodeAll ⇒ Object
- #TotalCodeList ⇒ Object
- #TotalNum ⇒ Object
- #TotalPage ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(proispinfolist = nil, totalcodeall = nil, totalcode4xx = nil, totalcode5xx = nil, totalcodelist = nil, pagenum = nil, pagesize = nil, totalpage = nil, totalnum = nil, totalcode2xx = nil, totalcode3xx = nil, requestid = nil) ⇒ DescribePlayErrorCodeSumInfoListResponse
constructor
A new instance of DescribePlayErrorCodeSumInfoListResponse.
Constructor Details
#initialize(proispinfolist = nil, totalcodeall = nil, totalcode4xx = nil, totalcode5xx = nil, totalcodelist = nil, pagenum = nil, pagesize = nil, totalpage = nil, totalnum = nil, totalcode2xx = nil, totalcode3xx = nil, requestid = nil) ⇒ DescribePlayErrorCodeSumInfoListResponse
Returns a new instance of DescribePlayErrorCodeSumInfoListResponse.
9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 |
# File 'lib/v20180801/models.rb', line 9279 def initialize(proispinfolist=nil, totalcodeall=nil, totalcode4xx=nil, totalcode5xx=nil, totalcodelist=nil, pagenum=nil, pagesize=nil, totalpage=nil, totalnum=nil, totalcode2xx=nil, totalcode3xx=nil, requestid=nil) @ProIspInfoList = proispinfolist @TotalCodeAll = totalcodeall @TotalCode4xx = totalcode4xx @TotalCode5xx = totalcode5xx @TotalCodeList = totalcodelist @PageNum = pagenum @PageSize = pagesize @TotalPage = totalpage @TotalNum = totalnum @TotalCode2xx = totalcode2xx @TotalCode3xx = totalcode3xx @RequestId = requestid end |
Instance Attribute Details
#PageNum ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def PageNum @PageNum end |
#PageSize ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def PageSize @PageSize end |
#ProIspInfoList ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def ProIspInfoList @ProIspInfoList end |
#RequestId ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def RequestId @RequestId end |
#TotalCode2xx ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalCode2xx @TotalCode2xx end |
#TotalCode3xx ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalCode3xx @TotalCode3xx end |
#TotalCode4xx ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalCode4xx @TotalCode4xx end |
#TotalCode5xx ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalCode5xx @TotalCode5xx end |
#TotalCodeAll ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalCodeAll @TotalCodeAll end |
#TotalCodeList ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalCodeList @TotalCodeList end |
#TotalNum ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
9277 9278 9279 |
# File 'lib/v20180801/models.rb', line 9277 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 |
# File 'lib/v20180801/models.rb', line 9294 def deserialize(params) unless params['ProIspInfoList'].nil? @ProIspInfoList = [] params['ProIspInfoList'].each do |i| proispplaycodedatainfo_tmp = ProIspPlayCodeDataInfo.new proispplaycodedatainfo_tmp.deserialize(i) @ProIspInfoList << proispplaycodedatainfo_tmp end end @TotalCodeAll = params['TotalCodeAll'] @TotalCode4xx = params['TotalCode4xx'] @TotalCode5xx = params['TotalCode5xx'] unless params['TotalCodeList'].nil? @TotalCodeList = [] params['TotalCodeList'].each do |i| playcodetotalinfo_tmp = PlayCodeTotalInfo.new playcodetotalinfo_tmp.deserialize(i) @TotalCodeList << playcodetotalinfo_tmp end end @PageNum = params['PageNum'] @PageSize = params['PageSize'] @TotalPage = params['TotalPage'] @TotalNum = params['TotalNum'] @TotalCode2xx = params['TotalCode2xx'] @TotalCode3xx = params['TotalCode3xx'] @RequestId = params['RequestId'] end |