NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAccountDeviceInfo...

45 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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