Class: TencentCloud::Trocket::V20230308::ModifyMQTTTopicRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trocket::V20230308::ModifyMQTTTopicRequest
- Defined in:
- lib/v20230308/models.rb
Overview
ModifyMQTTTopic请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, topic = nil, remark = nil) ⇒ ModifyMQTTTopicRequest
constructor
A new instance of ModifyMQTTTopicRequest.
Constructor Details
#initialize(instanceid = nil, topic = nil, remark = nil) ⇒ ModifyMQTTTopicRequest
Returns a new instance of ModifyMQTTTopicRequest.
5245 5246 5247 5248 5249 |
# File 'lib/v20230308/models.rb', line 5245 def initialize(instanceid=nil, topic=nil, remark=nil) @InstanceId = instanceid @Topic = topic @Remark = remark end |
Instance Attribute Details
#InstanceId ⇒ Object
5243 5244 5245 |
# File 'lib/v20230308/models.rb', line 5243 def InstanceId @InstanceId end |
#Remark ⇒ Object
5243 5244 5245 |
# File 'lib/v20230308/models.rb', line 5243 def Remark @Remark end |
#Topic ⇒ Object
5243 5244 5245 |
# File 'lib/v20230308/models.rb', line 5243 def Topic @Topic end |
Instance Method Details
#deserialize(params) ⇒ Object
5251 5252 5253 5254 5255 |
# File 'lib/v20230308/models.rb', line 5251 def deserialize(params) @InstanceId = params['InstanceId'] @Topic = params['Topic'] @Remark = params['Remark'] end |