Class: TencentCloud::Tdmq::V20200217::DescribeTopicsResponse

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

Overview

DescribeTopics返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(topicsets = nil, totalcount = nil, requestid = nil) ⇒ DescribeTopicsResponse

Returns a new instance of DescribeTopicsResponse.



7897
7898
7899
7900
7901
# File 'lib/v20200217/models.rb', line 7897

def initialize(topicsets=nil, totalcount=nil, requestid=nil)
  @TopicSets = topicsets
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TopicSets:

    主题集合数组。

  • TotalCount:

    主题数量。

  • RequestId:

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



7895
7896
7897
# File 'lib/v20200217/models.rb', line 7895

def RequestId
  @RequestId
end

#TopicSetsObject

Parameters:

  • TopicSets:

    主题集合数组。

  • TotalCount:

    主题数量。

  • RequestId:

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



7895
7896
7897
# File 'lib/v20200217/models.rb', line 7895

def TopicSets
  @TopicSets
end

#TotalCountObject

Parameters:

  • TopicSets:

    主题集合数组。

  • TotalCount:

    主题数量。

  • RequestId:

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



7895
7896
7897
# File 'lib/v20200217/models.rb', line 7895

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
# File 'lib/v20200217/models.rb', line 7903

def deserialize(params)
  unless params['TopicSets'].nil?
    @TopicSets = []
    params['TopicSets'].each do |i|
      topic_tmp = Topic.new
      topic_tmp.deserialize(i)
      @TopicSets << topic_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end