Class: TencentCloud::Iotexplorer::V20190423::ModifyLoRaGatewayResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::ModifyLoRaGatewayResponse
- Defined in:
- lib/v20190423/models.rb
Overview
ModifyLoRaGateway返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(gateway = nil, requestid = nil) ⇒ ModifyLoRaGatewayResponse
constructor
A new instance of ModifyLoRaGatewayResponse.
Constructor Details
#initialize(gateway = nil, requestid = nil) ⇒ ModifyLoRaGatewayResponse
Returns a new instance of ModifyLoRaGatewayResponse.
11097 11098 11099 11100 |
# File 'lib/v20190423/models.rb', line 11097 def initialize(gateway=nil, requestid=nil) @Gateway = gateway @RequestId = requestid end |
Instance Attribute Details
#Gateway ⇒ Object
11095 11096 11097 |
# File 'lib/v20190423/models.rb', line 11095 def Gateway @Gateway end |
#RequestId ⇒ Object
11095 11096 11097 |
# File 'lib/v20190423/models.rb', line 11095 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
11102 11103 11104 11105 11106 11107 11108 |
# File 'lib/v20190423/models.rb', line 11102 def deserialize(params) unless params['Gateway'].nil? @Gateway = LoRaGatewayItem.new @Gateway.deserialize(params['Gateway']) end @RequestId = params['RequestId'] end |