You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.2 KiB
C#

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.Response
{
/// <summary>
/// AlipayOperatorMobileBindResponse.
/// </summary>
public class AlipayOperatorMobileBindResponse : AopResponse
{
/// <summary>
/// 用户签约的支付宝账号对应的支付宝唯一用户号。 以2088开头的16位纯数字组成。
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 身份证号显示前1位+*(实际位数)+后1位5****************9
/// </summary>
[XmlElement("certificate")]
public string Certificate { get; set; }
/// <summary>
/// 用户手机号码
/// </summary>
[XmlElement("mobile_no")]
public string MobileNo { get; set; }
/// <summary>
/// 绑定状态: &#61548; S表示绑定成功 &#61548; F表示绑定失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 显示除姓名第一个字以外的其它部分
/// </summary>
[XmlElement("user_name")]
public string UserName { get; set; }
}
}