NewGaoKaoApi/PaymentSDK/AliPay/Domain/UserIdentityExt.cs

55 lines
1.5 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>
/// UserIdentityExt Data Structure.
/// </summary>
[Serializable]
public class UserIdentityExt : AopObject
{
/// <summary>
/// 用户交易账号的发卡机构id
/// </summary>
[XmlElement("account_issue_entity_id")]
public string AccountIssueEntityId { get; set; }
/// <summary>
/// 用户交易账号的发卡机构名称
/// </summary>
[XmlElement("account_issue_entity_name")]
public string AccountIssueEntityName { get; set; }
/// <summary>
/// 用户在支付机构的开户名称
/// </summary>
[XmlElement("account_name")]
public string AccountName { get; set; }
/// <summary>
/// 用户在支付机构的账号
/// </summary>
[XmlElement("account_no")]
public string AccountNo { get; set; }
/// <summary>
/// 扩展参数。JSON格式使用前需要和支付宝先约定key值。
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 用户在商家平台的会员id
/// </summary>
[XmlElement("member_id")]
public string MemberId { get; set; }
/// <summary>
/// 用户在商家平台的会员名称
/// </summary>
[XmlElement("member_name")]
public string MemberName { get; set; }
}
}