Class: TencentCloud::Tdmq::V20200217::DescribeRocketMQTopicMsgsResponse

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

Overview

DescribeRocketMQTopicMsgs返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, topicmsglogsets = nil, taskrequestid = nil, requestid = nil) ⇒ DescribeRocketMQTopicMsgsResponse

Returns a new instance of DescribeRocketMQTopicMsgsResponse.



7289
7290
7291
7292
7293
7294
# File 'lib/v20200217/models.rb', line 7289

def initialize(totalcount=nil, topicmsglogsets=nil, taskrequestid=nil, requestid=nil)
  @TotalCount = totalcount
  @TopicMsgLogSets = topicmsglogsets
  @TaskRequestId = taskrequestid
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

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

Parameters:

  • TotalCount:

    总数

  • TopicMsgLogSets:

    消息列表

  • TaskRequestId:

    标志一次分页事务

  • RequestId:

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



7287
7288
7289
# File 'lib/v20200217/models.rb', line 7287

def RequestId
  @RequestId
end

#TaskRequestIdObject

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

Parameters:

  • TotalCount:

    总数

  • TopicMsgLogSets:

    消息列表

  • TaskRequestId:

    标志一次分页事务

  • RequestId:

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



7287
7288
7289
# File 'lib/v20200217/models.rb', line 7287

def TaskRequestId
  @TaskRequestId
end

#TopicMsgLogSetsObject

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

Parameters:

  • TotalCount:

    总数

  • TopicMsgLogSets:

    消息列表

  • TaskRequestId:

    标志一次分页事务

  • RequestId:

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



7287
7288
7289
# File 'lib/v20200217/models.rb', line 7287

def TopicMsgLogSets
  @TopicMsgLogSets
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    总数

  • TopicMsgLogSets:

    消息列表

  • TaskRequestId:

    标志一次分页事务

  • RequestId:

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



7287
7288
7289
# File 'lib/v20200217/models.rb', line 7287

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
# File 'lib/v20200217/models.rb', line 7296

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['TopicMsgLogSets'].nil?
    @TopicMsgLogSets = []
    params['TopicMsgLogSets'].each do |i|
      rocketmqmsglog_tmp = RocketMQMsgLog.new
      rocketmqmsglog_tmp.deserialize(i)
      @TopicMsgLogSets << rocketmqmsglog_tmp
    end
  end
  @TaskRequestId = params['TaskRequestId']
  @RequestId = params['RequestId']
end