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.
2161 2162 2163 2164 |
# File 'lib/v20190423/models.rb', line 2161 def initialize(gateway=nil, requestid=nil) @Gateway = gateway @RequestId = requestid end |
Instance Attribute Details
#Gateway ⇒ Object
2159 2160 2161 |
# File 'lib/v20190423/models.rb', line 2159 def Gateway @Gateway end |
#RequestId ⇒ Object
2159 2160 2161 |
# File 'lib/v20190423/models.rb', line 2159 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2166 2167 2168 2169 2170 2171 2172 |
# File 'lib/v20190423/models.rb', line 2166 def deserialize(params) unless params['Gateway'].nil? @Gateway = LoRaGatewayItem.new @Gateway.deserialize(params['Gateway']) end @RequestId = params['RequestId'] end |