/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ namespace TencentCloud.Iotexplorer.V20190423.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class DeviceInfo : AbstractModel { /// /// 设备名 /// [JsonProperty("DeviceName")] public string DeviceName{ get; set; } /// /// 0: 离线, 1: 在线, 2: 获取失败, 3 未激活 /// [JsonProperty("Status")] public long? Status{ get; set; } /// /// 设备密钥,密钥加密的设备返回 /// [JsonProperty("DevicePsk")] public string DevicePsk{ get; set; } /// /// 首次上线时间 /// 注意:此字段可能返回 null,表示取不到有效值。 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("FirstOnlineTime")] public long? FirstOnlineTime{ get; set; } /// /// 最后一次上线时间 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("LoginTime")] public long? LoginTime{ get; set; } /// /// 设备创建时间 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("CreateTime")] public long? CreateTime{ get; set; } /// /// 设备固件版本 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Version")] public string Version{ get; set; } /// /// 设备证书 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("DeviceCert")] public string DeviceCert{ get; set; } /// /// 日志级别 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("LogLevel")] public long? LogLevel{ get; set; } /// /// LoRaWAN 设备地址 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("DevAddr")] public string DevAddr{ get; set; } /// /// LoRaWAN 应用密钥 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AppKey")] public string AppKey{ get; set; } /// /// LoRaWAN 设备唯一标识 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("DevEUI")] public string DevEUI{ get; set; } /// /// LoRaWAN 应用会话密钥 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AppSKey")] public string AppSKey{ get; set; } /// /// LoRaWAN 网络会话密钥 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("NwkSKey")] public string NwkSKey{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "DeviceName", this.DeviceName); this.SetParamSimple(map, prefix + "Status", this.Status); this.SetParamSimple(map, prefix + "DevicePsk", this.DevicePsk); this.SetParamSimple(map, prefix + "FirstOnlineTime", this.FirstOnlineTime); this.SetParamSimple(map, prefix + "LoginTime", this.LoginTime); this.SetParamSimple(map, prefix + "CreateTime", this.CreateTime); this.SetParamSimple(map, prefix + "Version", this.Version); this.SetParamSimple(map, prefix + "DeviceCert", this.DeviceCert); this.SetParamSimple(map, prefix + "LogLevel", this.LogLevel); this.SetParamSimple(map, prefix + "DevAddr", this.DevAddr); this.SetParamSimple(map, prefix + "AppKey", this.AppKey); this.SetParamSimple(map, prefix + "DevEUI", this.DevEUI); this.SetParamSimple(map, prefix + "AppSKey", this.AppSKey); this.SetParamSimple(map, prefix + "NwkSKey", this.NwkSKey); } } }