Class: TencentCloud::Tdmq::V20200217::DescribeRocketMQMsgTraceResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tdmq::V20200217::DescribeRocketMQMsgTraceResponse
- Defined in:
- lib/v20200217/models.rb
Overview
DescribeRocketMQMsgTrace返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, showtopicname = nil, requestid = nil) ⇒ DescribeRocketMQMsgTraceResponse
constructor
A new instance of DescribeRocketMQMsgTraceResponse.
Constructor Details
#initialize(result = nil, showtopicname = nil, requestid = nil) ⇒ DescribeRocketMQMsgTraceResponse
Returns a new instance of DescribeRocketMQMsgTraceResponse.
6493 6494 6495 6496 6497 |
# File 'lib/v20200217/models.rb', line 6493 def initialize(result=nil, showtopicname=nil, requestid=nil) @Result = result @ShowTopicName = showtopicname @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
6491 6492 6493 |
# File 'lib/v20200217/models.rb', line 6491 def RequestId @RequestId end |
#Result ⇒ Object
6491 6492 6493 |
# File 'lib/v20200217/models.rb', line 6491 def Result @Result end |
#ShowTopicName ⇒ Object
6491 6492 6493 |
# File 'lib/v20200217/models.rb', line 6491 def ShowTopicName @ShowTopicName end |
Instance Method Details
#deserialize(params) ⇒ Object
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 |
# File 'lib/v20200217/models.rb', line 6499 def deserialize(params) unless params['Result'].nil? @Result = [] params['Result'].each do |i| traceresult_tmp = TraceResult.new traceresult_tmp.deserialize(i) @Result << traceresult_tmp end end @ShowTopicName = params['ShowTopicName'] @RequestId = params['RequestId'] end |