初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
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; }
}
}