Class: TencentCloud::Tdmq::V20200217::DescribeCmqTopicsResponse

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

Overview

DescribeCmqTopics返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(topiclist = nil, totalcount = nil, requestid = nil) ⇒ DescribeCmqTopicsResponse

Returns a new instance of DescribeCmqTopicsResponse.



4075
4076
4077
4078
4079
# File 'lib/v20200217/models.rb', line 4075

def initialize(topiclist=nil, totalcount=nil, requestid=nil)
  @TopicList = topiclist
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

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

Parameters:

  • TopicList:

    主题列表

  • TotalCount:

    全量主题数量

  • RequestId:

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



4073
4074
4075
# File 'lib/v20200217/models.rb', line 4073

def RequestId
  @RequestId
end

#TopicListObject

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

Parameters:

  • TopicList:

    主题列表

  • TotalCount:

    全量主题数量

  • RequestId:

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



4073
4074
4075
# File 'lib/v20200217/models.rb', line 4073

def TopicList
  @TopicList
end

#TotalCountObject

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

Parameters:

  • TopicList:

    主题列表

  • TotalCount:

    全量主题数量

  • RequestId:

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



4073
4074
4075
# File 'lib/v20200217/models.rb', line 4073

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
# File 'lib/v20200217/models.rb', line 4081

def deserialize(params)
  unless params['TopicList'].nil?
    @TopicList = []
    params['TopicList'].each do |i|
      cmqtopic_tmp = CmqTopic.new
      cmqtopic_tmp.deserialize(i)
      @TopicList << cmqtopic_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end