Class: TencentCloud::Trocket::V20230308::VerifyMessageConsumptionRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trocket::V20230308::VerifyMessageConsumptionRequest
- Defined in:
- lib/v20230308/models.rb
Overview
VerifyMessageConsumption请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, topic = nil, clientid = nil, msgid = nil, consumergroup = nil) ⇒ VerifyMessageConsumptionRequest
constructor
A new instance of VerifyMessageConsumptionRequest.
Constructor Details
#initialize(instanceid = nil, topic = nil, clientid = nil, msgid = nil, consumergroup = nil) ⇒ VerifyMessageConsumptionRequest
Returns a new instance of VerifyMessageConsumptionRequest.
6450 6451 6452 6453 6454 6455 6456 |
# File 'lib/v20230308/models.rb', line 6450 def initialize(instanceid=nil, topic=nil, clientid=nil, msgid=nil, consumergroup=nil) @InstanceId = instanceid @Topic = topic @ClientId = clientid @MsgId = msgid @ConsumerGroup = consumergroup end |
Instance Attribute Details
#ClientId ⇒ Object
6448 6449 6450 |
# File 'lib/v20230308/models.rb', line 6448 def ClientId @ClientId end |
#ConsumerGroup ⇒ Object
6448 6449 6450 |
# File 'lib/v20230308/models.rb', line 6448 def ConsumerGroup @ConsumerGroup end |
#InstanceId ⇒ Object
6448 6449 6450 |
# File 'lib/v20230308/models.rb', line 6448 def InstanceId @InstanceId end |
#MsgId ⇒ Object
6448 6449 6450 |
# File 'lib/v20230308/models.rb', line 6448 def MsgId @MsgId end |
#Topic ⇒ Object
6448 6449 6450 |
# File 'lib/v20230308/models.rb', line 6448 def Topic @Topic end |
Instance Method Details
#deserialize(params) ⇒ Object
6458 6459 6460 6461 6462 6463 6464 |
# File 'lib/v20230308/models.rb', line 6458 def deserialize(params) @InstanceId = params['InstanceId'] @Topic = params['Topic'] @ClientId = params['ClientId'] @MsgId = params['MsgId'] @ConsumerGroup = params['ConsumerGroup'] end |