Class: TencentCloud::Iotvideoindustry::V20201201::GetVideoListByConResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::GetVideoListByConResponse
- Defined in:
- lib/v20201201/models.rb
Overview
GetVideoListByCon返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(videolist = nil, totalcount = nil, requestid = nil) ⇒ GetVideoListByConResponse
constructor
A new instance of GetVideoListByConResponse.
Constructor Details
#initialize(videolist = nil, totalcount = nil, requestid = nil) ⇒ GetVideoListByConResponse
Returns a new instance of GetVideoListByConResponse.
4626 4627 4628 4629 4630 |
# File 'lib/v20201201/models.rb', line 4626 def initialize(videolist=nil, totalcount=nil, requestid=nil) @VideoList = videolist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4624 4625 4626 |
# File 'lib/v20201201/models.rb', line 4624 def RequestId @RequestId end |
#TotalCount ⇒ Object
4624 4625 4626 |
# File 'lib/v20201201/models.rb', line 4624 def TotalCount @TotalCount end |
#VideoList ⇒ Object
4624 4625 4626 |
# File 'lib/v20201201/models.rb', line 4624 def VideoList @VideoList end |
Instance Method Details
#deserialize(params) ⇒ Object
4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 |
# File 'lib/v20201201/models.rb', line 4632 def deserialize(params) unless params['VideoList'].nil? @VideoList = [] params['VideoList'].each do |i| recordtaskitem_tmp = RecordTaskItem.new recordtaskitem_tmp.deserialize(i) @VideoList << recordtaskitem_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |