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