NewGaoKaoApi/PaymentSDK/AliPay/Domain/CreditFinancePayAccountInfo.cs

31 lines
804 B
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>
/// CreditFinancePayAccountInfo Data Structure.
/// </summary>
[Serializable]
public class CreditFinancePayAccountInfo : AopObject
{
/// <summary>
/// 账号的扩展信息String格式的json字符串
/// </summary>
[XmlElement("account_ext")]
public string AccountExt { get; set; }
/// <summary>
/// 支付的账号标识
/// </summary>
[XmlElement("identity")]
public string Identity { get; set; }
/// <summary>
/// 支付宝唯一标识的类型 ENTRUST_ACCOUNT USER_ID
/// </summary>
[XmlElement("identity_type")]
public string IdentityType { get; set; }
}
}