using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// GFAOpenAPIParticipantInfo Data Structure.
///
[Serializable]
public class GFAOpenAPIParticipantInfo : AopObject
{
///
/// 参与者账户
///
[XmlElement("account_no")]
public string AccountNo { get; set; }
///
/// 参与者账户类型
///
[XmlElement("account_type")]
public string AccountType { get; set; }
///
/// 参与者机构Id
///
[XmlElement("inst_code")]
public string InstCode { get; set; }
///
/// 参与者角色id(如支付宝中的uid)
///
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
///
/// 参与者扩展信息。Map 类型 JSON 字符串
///
[XmlElement("properties")]
public string Properties { get; set; }
}
}