using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayUserDeviceInfo Data Structure.
///
[Serializable]
public class AlipayUserDeviceInfo : AopObject
{
///
/// 扩展信息,json格式的字符串
///
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
///
/// 移动设备国际身份码缩写:移动设备国际身份码缩写。仅移动端
///
[JsonProperty("imei")]
public string Imei { get; set; }
///
/// ipv4地址
///
[JsonProperty("ip")]
public string Ip { get; set; }
///
/// mac地址,冒号分隔
///
[JsonProperty("mac")]
public string Mac { get; set; }
///
/// 操作系统名称
///
[JsonProperty("os_name")]
public string OsName { get; set; }
///
/// 操作系统版本号
///
[JsonProperty("os_version")]
public string OsVersion { get; set; }
}
}