NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicAccountRese...

49 lines
1.5 KiB
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>
/// AlipayOpenPublicAccountResetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicAccountResetModel : AopObject
{
/// <summary>
/// 需要重置的协议号,商户会员在支付宝服务窗账号中的唯一标识
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 绑定帐号,建议在开发者的系统中保持唯一性
/// </summary>
[XmlElement("bind_account_no")]
public string BindAccountNo { get; set; }
/// <summary>
/// 开发者期望在服务窗首页看到的关于该用户的显示信息最长10个字符
/// </summary>
[XmlElement("display_name")]
public string DisplayName { get; set; }
/// <summary>
/// 要绑定的商户会员对应的支付宝userid2088开头长度为16位的字符串
/// </summary>
[XmlElement("from_user_id")]
public string FromUserId { get; set; }
/// <summary>
/// 要绑定的商户会员的真实姓名最长10个汉字
/// </summary>
[XmlElement("real_name")]
public string RealName { get; set; }
/// <summary>
/// 备注信息,开发者可以通过该字段纪录其他的额外信息
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
}
}