NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceUserle...

25 lines
739 B
C#
Raw Permalink 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>
/// AlipayDataDataserviceUserlevelZrankGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceUserlevelZrankGetModel : AopObject
{
/// <summary>
/// type对应的账号如手机号-13815869530
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// 暂时支持EMAIL(邮箱),PHONE(手机号),BANKCARD银行卡,CERTNO身份证,IMEI设备唯一码,MACmac地址,TBID淘宝id
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}