using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZolozAuthenticationSmilepayInitializeModel Data Structure. /// [Serializable] public class ZolozAuthenticationSmilepayInitializeModel : AopObject { /// /// 设备指纹,用于唯一标识一台设备 /// [XmlElement("apdid_token")] public string ApdidToken { get; set; } /// /// 人脸识别应用名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 人脸识别应用版本号 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 基础包版本号 /// [XmlElement("base_ver")] public string BaseVer { get; set; } /// /// 生物识别元信息 /// [XmlElement("bio_meta_info")] public string BioMetaInfo { get; set; } /// /// 设备型号 /// [XmlElement("device_model")] public string DeviceModel { get; set; } /// /// 设备类型 /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 扩展信息 /// [XmlElement("ext_info")] public FaceExtParams ExtInfo { get; set; } /// /// 机具信息,调用人脸识别SDK获取 /// [XmlElement("machine_info")] public FaceMachineInfo MachineInfo { get; set; } /// /// 商户信息 /// [XmlElement("merchant_info")] public FaceMerchantInfo MerchantInfo { get; set; } /// /// 操作系统版本号 /// [XmlElement("os_version")] public string OsVersion { get; set; } /// /// 业务ID /// [XmlElement("remote_log_id")] public string RemoteLogId { get; set; } /// /// ZIM版本号 /// [XmlElement("zim_ver")] public string ZimVer { get; set; } } }