Class: TencentCloud::Iotvideoindustry::V20201201::DescribeVideoListByChannelResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeVideoListByChannelResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeVideoListByChannel返回参数结构体
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) ⇒ DescribeVideoListByChannelResponse
constructor
A new instance of DescribeVideoListByChannelResponse.
Constructor Details
#initialize(videolist = nil, totalcount = nil, requestid = nil) ⇒ DescribeVideoListByChannelResponse
Returns a new instance of DescribeVideoListByChannelResponse.
4010 4011 4012 4013 4014 |
# File 'lib/v20201201/models.rb', line 4010 def initialize(videolist=nil, totalcount=nil, requestid=nil) @VideoList = videolist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4008 4009 4010 |
# File 'lib/v20201201/models.rb', line 4008 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4008 4009 4010 |
# File 'lib/v20201201/models.rb', line 4008 def TotalCount @TotalCount end |
#VideoList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4008 4009 4010 |
# File 'lib/v20201201/models.rb', line 4008 def VideoList @VideoList end |
Instance Method Details
#deserialize(params) ⇒ Object
4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 |
# File 'lib/v20201201/models.rb', line 4016 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 |