Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayOpenPublicAccountCreateModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

48 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicAccountCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicAccountCreateModel : AopObject
{
/// <summary>
/// 账户添加成功,在支付宝与其对应的协议号。如果账户重复添加,接口保证幂等依然视为添加成功,返回此前该账户在支付宝对应的协议号。其他异常该字段不存在。
/// </summary>
[JsonProperty("agreement_id")]
public string AgreementId { 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>
/// 要绑定的商户会员对应的支付宝userid2088开头长度为16位的字符串
/// </summary>
[JsonProperty("from_user_id")]
public string FromUserId { get; set; }
/// <summary>
/// 要绑定的商户会员的真实姓名最长10个汉字
/// </summary>
[JsonProperty("real_name")]
public string RealName { get; set; }
/// <summary>
/// 备注信息,开发者可以通过该字段纪录其他的额外信息
/// </summary>
[JsonProperty("remark")]
public string Remark { get; set; }
}
}