using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ZolozIdentificationCustomerBlacklistQueryModel Data Structure.
///
[Serializable]
public class ZolozIdentificationCustomerBlacklistQueryModel : AopObject
{
///
/// 设备指纹
///
[XmlElement("apdid")]
public string Apdid { get; set; }
///
/// 设备指纹token
///
[XmlElement("apdid_token")]
public string ApdidToken { get; set; }
///
/// 业务流水号
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// 姓名
///
[XmlElement("cert_name")]
public string CertName { get; set; }
///
/// 证件号
///
[XmlElement("cert_no")]
public string CertNo { get; set; }
///
/// 证件类型
///
[XmlElement("cert_type")]
public string CertType { get; set; }
///
/// 淘宝无线安全设备标识
///
[XmlElement("umid")]
public string Umid { get; set; }
}
}