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
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#VideoList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
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.
4750 4751 4752 4753 4754 |
# File 'lib/v20201201/models.rb', line 4750 def initialize(videolist=nil, totalcount=nil, requestid=nil) @VideoList = videolist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4748 4749 4750 |
# File 'lib/v20201201/models.rb', line 4748 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4748 4749 4750 |
# File 'lib/v20201201/models.rb', line 4748 def TotalCount @TotalCount end |
#VideoList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4748 4749 4750 |
# File 'lib/v20201201/models.rb', line 4748 def VideoList @VideoList end |
Instance Method Details
#deserialize(params) ⇒ Object
4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 |
# File 'lib/v20201201/models.rb', line 4756 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 |