Class: TencentCloud::Live::V20180801::DescribePlayErrorCodeDetailInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribePlayErrorCodeDetailInfoListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribePlayErrorCodeDetailInfoList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(httpcodelist = nil, stattype = nil, requestid = nil) ⇒ DescribePlayErrorCodeDetailInfoListResponse
constructor
A new instance of DescribePlayErrorCodeDetailInfoListResponse.
Constructor Details
#initialize(httpcodelist = nil, stattype = nil, requestid = nil) ⇒ DescribePlayErrorCodeDetailInfoListResponse
Returns a new instance of DescribePlayErrorCodeDetailInfoListResponse.
9114 9115 9116 9117 9118 |
# File 'lib/v20180801/models.rb', line 9114 def initialize(httpcodelist=nil, stattype=nil, requestid=nil) @HttpCodeList = httpcodelist @StatType = stattype @RequestId = requestid end |
Instance Attribute Details
#HttpCodeList ⇒ Object
9112 9113 9114 |
# File 'lib/v20180801/models.rb', line 9112 def HttpCodeList @HttpCodeList end |
#RequestId ⇒ Object
9112 9113 9114 |
# File 'lib/v20180801/models.rb', line 9112 def RequestId @RequestId end |
#StatType ⇒ Object
9112 9113 9114 |
# File 'lib/v20180801/models.rb', line 9112 def StatType @StatType end |
Instance Method Details
#deserialize(params) ⇒ Object
9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 |
# File 'lib/v20180801/models.rb', line 9120 def deserialize(params) unless params['HttpCodeList'].nil? @HttpCodeList = [] params['HttpCodeList'].each do |i| httpcodeinfo_tmp = HttpCodeInfo.new httpcodeinfo_tmp.deserialize(i) @HttpCodeList << httpcodeinfo_tmp end end @StatType = params['StatType'] @RequestId = params['RequestId'] end |