using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenIotDeviceQueryModel Data Structure.
///
[Serializable]
public class AlipayOpenIotDeviceQueryModel : AopObject
{
///
/// 设备ID:biztid
///
[XmlElement("biz_tid")]
public string BizTid { get; set; }
///
/// 可选项[SN,ID] SN-使用supplier_id、device_sn联合作为设备唯一识别标识 ID-使用biztid作为设备唯一识别标识
///
[XmlElement("device_id_type")]
public string DeviceIdType { get; set; }
///
/// 设备序列号:SN
///
[XmlElement("device_sn")]
public string DeviceSn { get; set; }
///
/// 小程序ID
///
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
///
/// 设备供应商ID:supplierId
///
[XmlElement("supplier_id")]
public string SupplierId { get; set; }
///
/// 查询类型[MERCHANT,SHOP],MERCHANT-设备商户绑定关系
///
[XmlElement("type")]
public string Type { get; set; }
}
}