Class: TencentCloud::Trocket::V20230308::DescribeMQTTMessageRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trocket::V20230308::DescribeMQTTMessageRequest
- Defined in:
- lib/v20230308/models.rb
Overview
DescribeMQTTMessage请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, topic = nil, msgid = nil) ⇒ DescribeMQTTMessageRequest
constructor
A new instance of DescribeMQTTMessageRequest.
Constructor Details
#initialize(instanceid = nil, topic = nil, msgid = nil) ⇒ DescribeMQTTMessageRequest
Returns a new instance of DescribeMQTTMessageRequest.
2376 2377 2378 2379 2380 |
# File 'lib/v20230308/models.rb', line 2376 def initialize(instanceid=nil, topic=nil, msgid=nil) @InstanceId = instanceid @Topic = topic @MsgId = msgid end |
Instance Attribute Details
#InstanceId ⇒ Object
2374 2375 2376 |
# File 'lib/v20230308/models.rb', line 2374 def InstanceId @InstanceId end |
#MsgId ⇒ Object
2374 2375 2376 |
# File 'lib/v20230308/models.rb', line 2374 def MsgId @MsgId end |
#Topic ⇒ Object
2374 2375 2376 |
# File 'lib/v20230308/models.rb', line 2374 def Topic @Topic end |
Instance Method Details
#deserialize(params) ⇒ Object
2382 2383 2384 2385 2386 |
# File 'lib/v20230308/models.rb', line 2382 def deserialize(params) @InstanceId = params['InstanceId'] @Topic = params['Topic'] @MsgId = params['MsgId'] end |