Class: TencentCloud::Iotcloud::V20210408::ResetDeviceResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotcloud::V20210408::ResetDeviceResult
- Defined in:
- lib/v20210408/models.rb
Overview
重置设备状态结果
Instance Attribute Summary collapse
-
#DeviceName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Reason ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Success ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(devicename = nil, success = nil, reason = nil) ⇒ ResetDeviceResult
constructor
A new instance of ResetDeviceResult.
Constructor Details
#initialize(devicename = nil, success = nil, reason = nil) ⇒ ResetDeviceResult
Returns a new instance of ResetDeviceResult.
3992 3993 3994 3995 3996 |
# File 'lib/v20210408/models.rb', line 3992 def initialize(devicename=nil, success=nil, reason=nil) @DeviceName = devicename @Success = success @Reason = reason end |
Instance Attribute Details
#DeviceName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3990 3991 3992 |
# File 'lib/v20210408/models.rb', line 3990 def DeviceName @DeviceName end |
#Reason ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3990 3991 3992 |
# File 'lib/v20210408/models.rb', line 3990 def Reason @Reason end |
#Success ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3990 3991 3992 |
# File 'lib/v20210408/models.rb', line 3990 def Success @Success end |
Instance Method Details
#deserialize(params) ⇒ Object
3998 3999 4000 4001 4002 |
# File 'lib/v20210408/models.rb', line 3998 def deserialize(params) @DeviceName = params['DeviceName'] @Success = params['Success'] @Reason = params['Reason'] end |