NewGaoKaoApi/PaymentSDK/AliPay/Domain/MaskedLogonIdView.cs

31 lines
905 B
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>
/// MaskedLogonIdView Data Structure.
/// </summary>
[Serializable]
public class MaskedLogonIdView : AopObject
{
/// <summary>
/// 脱敏后的支付宝邮箱登录名,如果用户没有邮箱登录名,则返回空。
/// </summary>
[XmlElement("email")]
public string Email { get; set; }
/// <summary>
/// 脱敏后的手机号登录名如果用户没有手机号登录名则返回空。大陆手机为11位数字非大陆由地区码、横杠和号码拼接而成。
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 支付宝userId
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}