Class: TencentCloud::Iotcloud::V20210408::UpdateDeviceLogLevelRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotcloud::V20210408::UpdateDeviceLogLevelRequest
- Defined in:
- lib/v20210408/models.rb
Overview
UpdateDeviceLogLevel请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(productid = nil, devicename = nil, loglevel = nil) ⇒ UpdateDeviceLogLevelRequest
constructor
A new instance of UpdateDeviceLogLevelRequest.
Constructor Details
#initialize(productid = nil, devicename = nil, loglevel = nil) ⇒ UpdateDeviceLogLevelRequest
Returns a new instance of UpdateDeviceLogLevelRequest.
4418 4419 4420 4421 4422 |
# File 'lib/v20210408/models.rb', line 4418 def initialize(productid=nil, devicename=nil, loglevel=nil) @ProductId = productid @DeviceName = devicename @LogLevel = loglevel end |
Instance Attribute Details
#DeviceName ⇒ Object
4416 4417 4418 |
# File 'lib/v20210408/models.rb', line 4416 def DeviceName @DeviceName end |
#LogLevel ⇒ Object
4416 4417 4418 |
# File 'lib/v20210408/models.rb', line 4416 def LogLevel @LogLevel end |
#ProductId ⇒ Object
4416 4417 4418 |
# File 'lib/v20210408/models.rb', line 4416 def ProductId @ProductId end |
Instance Method Details
#deserialize(params) ⇒ Object
4424 4425 4426 4427 4428 |
# File 'lib/v20210408/models.rb', line 4424 def deserialize(params) @ProductId = params['ProductId'] @DeviceName = params['DeviceName'] @LogLevel = params['LogLevel'] end |