Class: TencentCloud::Tdmq::V20200217::ExportRocketMQMessageDetailRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tdmq::V20200217::ExportRocketMQMessageDetailRequest
- Defined in:
- lib/v20200217/models.rb
Overview
ExportRocketMQMessageDetail请求参数结构体
Instance Attribute Summary collapse
-
#ClusterId ⇒ Object
如果是死信消息 isDlqMsg=true.
-
#DeadLetterMsg ⇒ Object
如果是死信消息 isDlqMsg=true.
-
#EnvironmentId ⇒ Object
如果是死信消息 isDlqMsg=true.
-
#IncludeMsgBody ⇒ Object
如果是死信消息 isDlqMsg=true.
-
#MsgId ⇒ Object
如果是死信消息 isDlqMsg=true.
-
#TopicName ⇒ Object
如果是死信消息 isDlqMsg=true.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clusterid = nil, environmentid = nil, topicname = nil, msgid = nil, includemsgbody = nil, deadlettermsg = nil) ⇒ ExportRocketMQMessageDetailRequest
constructor
A new instance of ExportRocketMQMessageDetailRequest.
Constructor Details
#initialize(clusterid = nil, environmentid = nil, topicname = nil, msgid = nil, includemsgbody = nil, deadlettermsg = nil) ⇒ ExportRocketMQMessageDetailRequest
Returns a new instance of ExportRocketMQMessageDetailRequest.
8073 8074 8075 8076 8077 8078 8079 8080 |
# File 'lib/v20200217/models.rb', line 8073 def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, includemsgbody=nil, deadlettermsg=nil) @ClusterId = clusterid @EnvironmentId = environmentid @TopicName = topicname @MsgId = msgid @IncludeMsgBody = includemsgbody @DeadLetterMsg = deadlettermsg end |
Instance Attribute Details
#ClusterId ⇒ Object
如果是死信消息 isDlqMsg=true
8071 8072 8073 |
# File 'lib/v20200217/models.rb', line 8071 def ClusterId @ClusterId end |
#DeadLetterMsg ⇒ Object
如果是死信消息 isDlqMsg=true
8071 8072 8073 |
# File 'lib/v20200217/models.rb', line 8071 def DeadLetterMsg @DeadLetterMsg end |
#EnvironmentId ⇒ Object
如果是死信消息 isDlqMsg=true
8071 8072 8073 |
# File 'lib/v20200217/models.rb', line 8071 def EnvironmentId @EnvironmentId end |
#IncludeMsgBody ⇒ Object
如果是死信消息 isDlqMsg=true
8071 8072 8073 |
# File 'lib/v20200217/models.rb', line 8071 def IncludeMsgBody @IncludeMsgBody end |
#MsgId ⇒ Object
如果是死信消息 isDlqMsg=true
8071 8072 8073 |
# File 'lib/v20200217/models.rb', line 8071 def MsgId @MsgId end |
#TopicName ⇒ Object
如果是死信消息 isDlqMsg=true
8071 8072 8073 |
# File 'lib/v20200217/models.rb', line 8071 def TopicName @TopicName end |
Instance Method Details
#deserialize(params) ⇒ Object
8082 8083 8084 8085 8086 8087 8088 8089 |
# File 'lib/v20200217/models.rb', line 8082 def deserialize(params) @ClusterId = params['ClusterId'] @EnvironmentId = params['EnvironmentId'] @TopicName = params['TopicName'] @MsgId = params['MsgId'] @IncludeMsgBody = params['IncludeMsgBody'] @DeadLetterMsg = params['DeadLetterMsg'] end |