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