using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayUserAccountDeviceInfoQueryModel Data Structure. /// [Serializable] public class AlipayUserAccountDeviceInfoQueryModel : AopObject { /// /// idfa或者imei号数组。同一笔请求中,数组中只能是idfa或者imei,不能既有imei,又有idfa /// [XmlArray("device_ids")] [XmlArrayItem("string")] public List DeviceIds { get; set; } /// /// 设备类型,IMEI、IDFA、MOBILE(大小写敏感) /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 设备id的加密方式,如没有加密,可以不传。一般MD5即可满足需求,如其他方式,请和支付宝技术支持联系 /// [XmlElement("encrypt_type")] public string EncryptType { get; set; } /// /// 扩展参数,如设备系统类型,系统版本等,格式为基本字符串组成的json串 /// [XmlElement("extra_info")] public string ExtraInfo { get; set; } /// /// 一般代表调用的合作机构名称,可写简称,大小写敏感 /// [XmlElement("request_from")] public string RequestFrom { get; set; } } }