Class: TencentCloud::Iotcloud::V20180614::CreateLoraDeviceRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotcloud::V20180614::CreateLoraDeviceRequest
- Defined in:
- lib/v20180614/models.rb
Overview
CreateLoraDevice请求参数结构体
Instance Attribute Summary collapse
- #AppEui ⇒ Object
- #AppKey ⇒ Object
- #AuthKey ⇒ Object
- #DeviceEui ⇒ Object
- #DeviceName ⇒ Object
- #DeviceType ⇒ Object
- #Memo ⇒ Object
- #ProductId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(productid = nil, devicename = nil, devicetype = nil, appeui = nil, deviceeui = nil, appkey = nil, authkey = nil, memo = nil) ⇒ CreateLoraDeviceRequest
constructor
A new instance of CreateLoraDeviceRequest.
Constructor Details
#initialize(productid = nil, devicename = nil, devicetype = nil, appeui = nil, deviceeui = nil, appkey = nil, authkey = nil, memo = nil) ⇒ CreateLoraDeviceRequest
Returns a new instance of CreateLoraDeviceRequest.
459 460 461 462 463 464 465 466 467 468 |
# File 'lib/v20180614/models.rb', line 459 def initialize(productid=nil, devicename=nil, devicetype=nil, appeui=nil, deviceeui=nil, appkey=nil, authkey=nil, memo=nil) @ProductId = productid @DeviceName = devicename @DeviceType = devicetype @AppEui = appeui @DeviceEui = deviceeui @AppKey = appkey @AuthKey = authkey @Memo = memo end |
Instance Attribute Details
#AppEui ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def AppEui @AppEui end |
#AppKey ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def AppKey @AppKey end |
#AuthKey ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def AuthKey @AuthKey end |
#DeviceEui ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def DeviceEui @DeviceEui end |
#DeviceName ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def DeviceName @DeviceName end |
#DeviceType ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def DeviceType @DeviceType end |
#Memo ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def Memo @Memo end |
#ProductId ⇒ Object
457 458 459 |
# File 'lib/v20180614/models.rb', line 457 def ProductId @ProductId end |
Instance Method Details
#deserialize(params) ⇒ Object
470 471 472 473 474 475 476 477 478 479 |
# File 'lib/v20180614/models.rb', line 470 def deserialize(params) @ProductId = params['ProductId'] @DeviceName = params['DeviceName'] @DeviceType = params['DeviceType'] @AppEui = params['AppEui'] @DeviceEui = params['DeviceEui'] @AppKey = params['AppKey'] @AuthKey = params['AuthKey'] @Memo = params['Memo'] end |