Class: TencentCloud::Iotvideoindustry::V20201201::DescribeLiveChannelListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeLiveChannelListResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeLiveChannelList返回参数结构体
Instance Attribute Summary collapse
-
#LiveChannels ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, livechannels = nil, requestid = nil) ⇒ DescribeLiveChannelListResponse
constructor
A new instance of DescribeLiveChannelListResponse.
Constructor Details
#initialize(total = nil, livechannels = nil, requestid = nil) ⇒ DescribeLiveChannelListResponse
Returns a new instance of DescribeLiveChannelListResponse.
2748 2749 2750 2751 2752 |
# File 'lib/v20201201/models.rb', line 2748 def initialize(total=nil, livechannels=nil, requestid=nil) @Total = total @LiveChannels = livechannels @RequestId = requestid end |
Instance Attribute Details
#LiveChannels ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2746 2747 2748 |
# File 'lib/v20201201/models.rb', line 2746 def LiveChannels @LiveChannels end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2746 2747 2748 |
# File 'lib/v20201201/models.rb', line 2746 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2746 2747 2748 |
# File 'lib/v20201201/models.rb', line 2746 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 |
# File 'lib/v20201201/models.rb', line 2754 def deserialize(params) @Total = params['Total'] unless params['LiveChannels'].nil? @LiveChannels = [] params['LiveChannels'].each do |i| livechannelinfo_tmp = LiveChannelInfo.new livechannelinfo_tmp.deserialize(i) @LiveChannels << livechannelinfo_tmp end end @RequestId = params['RequestId'] end |