using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// CreditFinancePayAccountInfo Data Structure.
///
[Serializable]
public class CreditFinancePayAccountInfo : AopObject
{
///
/// 账号的扩展信息,String格式的json字符串
///
[XmlElement("account_ext")]
public string AccountExt { get; set; }
///
/// 支付的账号标识
///
[XmlElement("identity")]
public string Identity { get; set; }
///
/// 支付宝唯一标识的类型 ENTRUST_ACCOUNT USER_ID
///
[XmlElement("identity_type")]
public string IdentityType { get; set; }
}
}