Class: TencentCloud::Tdmq::V20200217::DescribeRocketMQTopicsByGroupResponse

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

Overview

DescribeRocketMQTopicsByGroup返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, topics = nil, requestid = nil) ⇒ DescribeRocketMQTopicsByGroupResponse

Returns a new instance of DescribeRocketMQTopicsByGroupResponse.



7405
7406
7407
7408
7409
# File 'lib/v20200217/models.rb', line 7405

def initialize(totalcount=nil, topics=nil, requestid=nil)
  @TotalCount = totalcount
  @Topics = topics
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TotalCount:

    总条数

  • Topics:

    主题列表

  • RequestId:

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



7403
7404
7405
# File 'lib/v20200217/models.rb', line 7403

def RequestId
  @RequestId
end

#TopicsObject

Parameters:

  • TotalCount:

    总条数

  • Topics:

    主题列表

  • RequestId:

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



7403
7404
7405
# File 'lib/v20200217/models.rb', line 7403

def Topics
  @Topics
end

#TotalCountObject

Parameters:

  • TotalCount:

    总条数

  • Topics:

    主题列表

  • RequestId:

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



7403
7404
7405
# File 'lib/v20200217/models.rb', line 7403

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



7411
7412
7413
7414
7415
# File 'lib/v20200217/models.rb', line 7411

def deserialize(params)
  @TotalCount = params['TotalCount']
  @Topics = params['Topics']
  @RequestId = params['RequestId']
end