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

55 lines
1.8 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayUserAccountDeviceInfoUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAccountDeviceInfoUploadModel : AopObject
{
/// <summary>
/// 回调地址
/// </summary>
[XmlElement("call_back")]
public string CallBack { get; set; }
/// <summary>
/// 设备id必须和device_type一一对应即如果传的是device_type=IDFA则改字段传设备id如果device_type=IMEI传设备IMEI号.
/// </summary>
[XmlElement("device_id")]
public string DeviceId { get; set; }
/// <summary>
/// 设备类型:IMEI、IDFA、MOBILE等(大小写敏感)
/// </summary>
[XmlElement("device_type")]
public string DeviceType { get; set; }
/// <summary>
/// 设备id的加密方式,如没有加 密,可以不传。一般sha256即可满足需求,如其他方式,请提前和支付宝技术支持联系
/// </summary>
[XmlElement("encrypt_type")]
public string EncryptType { get; set; }
/// <summary>
/// 扩展参数,如设备系统类型,系统版本等,格式为基本字符串组成的json串
/// </summary>
[XmlElement("extra_info")]
public string ExtraInfo { get; set; }
/// <summary>
/// 链接参数信息格式为基本字符串组成的json串
/// </summary>
[XmlElement("params")]
public string Params { get; set; }
/// <summary>
/// 一般代表调用的合作机构名称,可写简称,大小写敏感
/// </summary>
[XmlElement("request_from")]
public string RequestFrom { get; set; }
}
}