NewGaoKaoApi/PaymentSDK/AliPay/Domain/IotDeviceModel.cs

63 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// IotDeviceModel Data Structure.
/// </summary>
[Serializable]
public class IotDeviceModel : AopObject
{
/// <summary>
/// 该型号所属类目的类目id
/// </summary>
[XmlElement("category_id")]
public string CategoryId { get; set; }
/// <summary>
/// 型号支持的配网链接类型, 取值可为WiFiBlueTooth
/// </summary>
[XmlArray("connection_types")]
[XmlArrayItem("string")]
public List<string> ConnectionTypes { get; set; }
/// <summary>
/// 配网链接地址
/// </summary>
[XmlElement("connection_url")]
public string ConnectionUrl { get; set; }
/// <summary>
/// 关于型号的描述信息
/// </summary>
[XmlElement("decription")]
public string Decription { get; set; }
/// <summary>
/// 型号的图标图片地址
/// </summary>
[XmlElement("icon")]
public string Icon { get; set; }
/// <summary>
/// 制造商
/// </summary>
[XmlElement("manufacturer")]
public string Manufacturer { get; set; }
/// <summary>
/// 协议服务商用于唯一标识一个设备型号的型号id
/// </summary>
[XmlElement("model_id")]
public string ModelId { get; set; }
/// <summary>
/// 设备型号的名称
/// </summary>
[XmlElement("model_name")]
public string ModelName { get; set; }
}
}