lib/v20190423/models.rb in tencentcloud-sdk-iotexplorer-3.0.460 vs lib/v20190423/models.rb in tencentcloud-sdk-iotexplorer-3.0.461

- old
+ new

@@ -2801,14 +2801,17 @@ # 注意:此字段可能返回 null,表示取不到有效值。 # @type ProductName: String # @param DeviceType: 设备类型(设备、子设备、网关) # 注意:此字段可能返回 null,表示取不到有效值。 # @type DeviceType: String + # @param IsLora: 是否是 lora 设备 + # 注意:此字段可能返回 null,表示取不到有效值。 + # @type IsLora: Boolean - attr_accessor :DeviceName, :Status, :DevicePsk, :FirstOnlineTime, :LoginTime, :CreateTime, :Version, :DeviceCert, :LogLevel, :DevAddr, :AppKey, :DevEUI, :AppSKey, :NwkSKey, :CreateUserId, :CreatorNickName, :EnableState, :ProductId, :ProductName, :DeviceType + attr_accessor :DeviceName, :Status, :DevicePsk, :FirstOnlineTime, :LoginTime, :CreateTime, :Version, :DeviceCert, :LogLevel, :DevAddr, :AppKey, :DevEUI, :AppSKey, :NwkSKey, :CreateUserId, :CreatorNickName, :EnableState, :ProductId, :ProductName, :DeviceType, :IsLora - def initialize(devicename=nil, status=nil, devicepsk=nil, firstonlinetime=nil, logintime=nil, createtime=nil, version=nil, devicecert=nil, loglevel=nil, devaddr=nil, appkey=nil, deveui=nil, appskey=nil, nwkskey=nil, createuserid=nil, creatornickname=nil, enablestate=nil, productid=nil, productname=nil, devicetype=nil) + def initialize(devicename=nil, status=nil, devicepsk=nil, firstonlinetime=nil, logintime=nil, createtime=nil, version=nil, devicecert=nil, loglevel=nil, devaddr=nil, appkey=nil, deveui=nil, appskey=nil, nwkskey=nil, createuserid=nil, creatornickname=nil, enablestate=nil, productid=nil, productname=nil, devicetype=nil, islora=nil) @DeviceName = devicename @Status = status @DevicePsk = devicepsk @FirstOnlineTime = firstonlinetime @LoginTime = logintime @@ -2825,10 +2828,11 @@ @CreatorNickName = creatornickname @EnableState = enablestate @ProductId = productid @ProductName = productname @DeviceType = devicetype + @IsLora = islora end def deserialize(params) @DeviceName = params['DeviceName'] @Status = params['Status'] @@ -2848,9 +2852,10 @@ @CreatorNickName = params['CreatorNickName'] @EnableState = params['EnableState'] @ProductId = params['ProductId'] @ProductName = params['ProductName'] @DeviceType = params['DeviceType'] + @IsLora = params['IsLora'] end end # 设备位置详情 class DevicePositionItem < TencentCloud::Common::AbstractModel