NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicAccountCrea...

49 lines
1.7 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>
/// AlipayOpenPublicAccountCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicAccountCreateModel : 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; }
}
}