NewGaoKaoApi/PaymentSDK/AliPay/Domain/Account.cs

37 lines
1.3 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>
/// Account Data Structure.
/// </summary>
[Serializable]
public class Account : AopObject
{
/// <summary>
/// json字符串扩展信息支付宝alipayId外部银行卡银行机构名称、银行机构号总行、支行、对公/对私等
/// </summary>
[XmlElement("account_ext")]
public string AccountExt { get; set; }
/// <summary>
/// 账户名称,如银行账户名,支付宝手机号、email
/// </summary>
[XmlElement("account_name")]
public string AccountName { get; set; }
/// <summary>
/// 资金账号,支付宝2088开头或银行卡号
/// </summary>
[XmlElement("account_no")]
public string AccountNo { get; set; }
/// <summary>
/// 账户类型ALIPAY(“ALIPAY”, “Alipay”, “支付宝账号”, “支付宝账号”),CURRENT(“CURRENT”, “MayiBank”, “网商银行账号”, “网商银行账号”),OUT_BANK(“OUT_BANK”, “OutBank”, “外部银行账号”, “外部银行账号”)
/// </summary>
[XmlElement("account_type")]
public string AccountType { get; set; }
}
}