Class: TencentCloud::Live::V20180801::DescribeConcurrentRecordStreamNumResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeConcurrentRecordStreamNumResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeConcurrentRecordStreamNum返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(datainfolist = nil, requestid = nil) ⇒ DescribeConcurrentRecordStreamNumResponse
constructor
A new instance of DescribeConcurrentRecordStreamNumResponse.
Constructor Details
#initialize(datainfolist = nil, requestid = nil) ⇒ DescribeConcurrentRecordStreamNumResponse
Returns a new instance of DescribeConcurrentRecordStreamNumResponse.
6119 6120 6121 6122 |
# File 'lib/v20180801/models.rb', line 6119 def initialize(datainfolist=nil, requestid=nil) @DataInfoList = datainfolist @RequestId = requestid end |
Instance Attribute Details
#DataInfoList ⇒ Object
6117 6118 6119 |
# File 'lib/v20180801/models.rb', line 6117 def DataInfoList @DataInfoList end |
#RequestId ⇒ Object
6117 6118 6119 |
# File 'lib/v20180801/models.rb', line 6117 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 |
# File 'lib/v20180801/models.rb', line 6124 def deserialize(params) unless params['DataInfoList'].nil? @DataInfoList = [] params['DataInfoList'].each do |i| concurrentrecordstreamnum_tmp = ConcurrentRecordStreamNum.new concurrentrecordstreamnum_tmp.deserialize(i) @DataInfoList << concurrentrecordstreamnum_tmp end end @RequestId = params['RequestId'] end |