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.
9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 |
# File 'lib/v20180801/models.rb', line 9210 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
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def PageNum @PageNum end |
#PageSize ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def PageSize @PageSize end |
#ProIspInfoList ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def ProIspInfoList @ProIspInfoList end |
#RequestId ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def RequestId @RequestId end |
#TotalCode2xx ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalCode2xx @TotalCode2xx end |
#TotalCode3xx ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalCode3xx @TotalCode3xx end |
#TotalCode4xx ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalCode4xx @TotalCode4xx end |
#TotalCode5xx ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalCode5xx @TotalCode5xx end |
#TotalCodeAll ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalCodeAll @TotalCodeAll end |
#TotalCodeList ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalCodeList @TotalCodeList end |
#TotalNum ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalNum @TotalNum end |
#TotalPage ⇒ Object
9208 9209 9210 |
# File 'lib/v20180801/models.rb', line 9208 def TotalPage @TotalPage end |
Instance Method Details
#deserialize(params) ⇒ Object
9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 |
# File 'lib/v20180801/models.rb', line 9225 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 |