48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// StdPublicBindAccount Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class StdPublicBindAccount : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 协议号是商户会员在支付宝公众账号中的唯一标识。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("agreement_id")]
|
|||
|
|
public string AgreementId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 公众账号ID
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("app_id")]
|
|||
|
|
public string AppId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 绑定的商户会员号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("bind_account_no")]
|
|||
|
|
public string BindAccountNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 公众账号期望支付宝用户在公众账号首页看到的关于该用户的显示信息,最长10个汉字。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("display_name")]
|
|||
|
|
public string DisplayName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 绑定的商户会员对应的支付宝用户号,以2088 开头的16位数字。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("from_user_id")]
|
|||
|
|
public string FromUserId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 绑定的商户会员的真实姓名,最长10个汉字。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("real_name")]
|
|||
|
|
public string RealName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|