Class: TencentCloud::Iotvideoindustry::V20201201::DescribeLiveChannelListResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20201201/models.rb

Overview

DescribeLiveChannelList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#LiveChannelsObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Total:

    频道总数

  • LiveChannels:

    频道信息数组

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



2746
2747
2748
# File 'lib/v20201201/models.rb', line 2746

def LiveChannels
  @LiveChannels
end

#RequestIdObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Total:

    频道总数

  • LiveChannels:

    频道信息数组

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



2746
2747
2748
# File 'lib/v20201201/models.rb', line 2746

def RequestId
  @RequestId
end

#TotalObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Total:

    频道总数

  • LiveChannels:

    频道信息数组

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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