Class: TencentCloud::Trocket::V20230308::CreateMQTTTopicResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trocket::V20230308::CreateMQTTTopicResponse
- Defined in:
- lib/v20230308/models.rb
Overview
CreateMQTTTopic返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, topic = nil, requestid = nil) ⇒ CreateMQTTTopicResponse
constructor
A new instance of CreateMQTTTopicResponse.
Constructor Details
#initialize(instanceid = nil, topic = nil, requestid = nil) ⇒ CreateMQTTTopicResponse
Returns a new instance of CreateMQTTTopicResponse.
610 611 612 613 614 |
# File 'lib/v20230308/models.rb', line 610 def initialize(instanceid=nil, topic=nil, requestid=nil) @InstanceId = instanceid @Topic = topic @RequestId = requestid end |
Instance Attribute Details
#InstanceId ⇒ Object
608 609 610 |
# File 'lib/v20230308/models.rb', line 608 def InstanceId @InstanceId end |
#RequestId ⇒ Object
608 609 610 |
# File 'lib/v20230308/models.rb', line 608 def RequestId @RequestId end |
#Topic ⇒ Object
608 609 610 |
# File 'lib/v20230308/models.rb', line 608 def Topic @Topic end |
Instance Method Details
#deserialize(params) ⇒ Object
616 617 618 619 620 |
# File 'lib/v20230308/models.rb', line 616 def deserialize(params) @InstanceId = params['InstanceId'] @Topic = params['Topic'] @RequestId = params['RequestId'] end |