Class: TencentCloud::Iotvideoindustry::V20201201::DescribeChannelsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeChannelsResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeChannels返回参数结构体
Instance Attribute Summary collapse
-
#Channels ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, channels = nil, requestid = nil) ⇒ DescribeChannelsResponse
constructor
A new instance of DescribeChannelsResponse.
Constructor Details
#initialize(totalcount = nil, channels = nil, requestid = nil) ⇒ DescribeChannelsResponse
Returns a new instance of DescribeChannelsResponse.
2002 2003 2004 2005 2006 |
# File 'lib/v20201201/models.rb', line 2002 def initialize(totalcount=nil, channels=nil, requestid=nil) @TotalCount = totalcount @Channels = channels @RequestId = requestid end |
Instance Attribute Details
#Channels ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2000 2001 2002 |
# File 'lib/v20201201/models.rb', line 2000 def Channels @Channels end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2000 2001 2002 |
# File 'lib/v20201201/models.rb', line 2000 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2000 2001 2002 |
# File 'lib/v20201201/models.rb', line 2000 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 |
# File 'lib/v20201201/models.rb', line 2008 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Channels'].nil? @Channels = [] params['Channels'].each do |i| channeldetail_tmp = ChannelDetail.new channeldetail_tmp.deserialize(i) @Channels << channeldetail_tmp end end @RequestId = params['RequestId'] end |