using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayTradeVendorpayDevicedataUploadModel Data Structure. /// [Serializable] public class AlipayTradeVendorpayDevicedataUploadModel : AopObject { /// /// 客户端应用包标识 /// [XmlElement("app_package_name")] public string AppPackageName { get; set; } /// /// 扩展字段 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 国际移动设备标识 /// [XmlElement("imei")] public string Imei { get; set; } /// /// 国际移动用户识别码 /// [XmlElement("imsi")] public string Imsi { get; set; } /// /// mac地址 /// [XmlElement("mac")] public string Mac { get; set; } /// /// 手机机型 /// [XmlElement("machine_type")] public string MachineType { get; set; } /// /// 手机系统版本 /// [XmlElement("phone_sys_version")] public string PhoneSysVersion { get; set; } /// /// 厂商公钥、base64编码 /// [XmlElement("public_key")] public string PublicKey { get; set; } /// /// 设备应用来源,厂商支付标记 /// [XmlElement("tidsource")] public string Tidsource { get; set; } /// /// 设备标识符 /// [XmlElement("uuid")] public string Uuid { get; set; } /// /// 厂商名字 /// [XmlElement("vendor")] public string Vendor { get; set; } } }