Class: TencentCloud::Iotexplorer::V20190423::CreateLoRaGatewayResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::CreateLoRaGatewayResponse
- Defined in:
- lib/v20190423/models.rb
Overview
CreateLoRaGateway返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(gateway = nil, requestid = nil) ⇒ CreateLoRaGatewayResponse
constructor
A new instance of CreateLoRaGatewayResponse.
Constructor Details
#initialize(gateway = nil, requestid = nil) ⇒ CreateLoRaGatewayResponse
Returns a new instance of CreateLoRaGatewayResponse.
2173 2174 2175 2176 |
# File 'lib/v20190423/models.rb', line 2173 def initialize(gateway=nil, requestid=nil) @Gateway = gateway @RequestId = requestid end |
Instance Attribute Details
#Gateway ⇒ Object
2171 2172 2173 |
# File 'lib/v20190423/models.rb', line 2171 def Gateway @Gateway end |
#RequestId ⇒ Object
2171 2172 2173 |
# File 'lib/v20190423/models.rb', line 2171 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2178 2179 2180 2181 2182 2183 2184 |
# File 'lib/v20190423/models.rb', line 2178 def deserialize(params) unless params['Gateway'].nil? @Gateway = LoRaGatewayItem.new @Gateway.deserialize(params['Gateway']) end @RequestId = params['RequestId'] end |