using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenIotDeviceBindModel Data Structure.
///
[Serializable]
public class AlipayOpenIotDeviceBindModel : 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; }
///
/// 商户编号,由ISV定义,需要保证在ISV下唯一
///
[XmlElement("external_id")]
public string ExternalId { get; set; }
///
/// 商户角色id。对于直连开店场景,填写商户pid;对于间连开店场景,填写商户smid。
///
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
///
/// 区分商户ID类型,直连商户填写direct,间连商户填写indirect
///
[XmlElement("merchant_id_type")]
public string MerchantIdType { get; set; }
///
/// 小程序ID
///
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
///
/// 受理商户的ISV在支付宝的pid
///
[XmlElement("source")]
public string Source { get; set; }
///
/// 设备供应商ID:supplierId
///
[XmlElement("supplier_id")]
public string SupplierId { get; set; }
}
}