using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AliTrustRealNameRegistration Data Structure.
///
[Serializable]
public class AliTrustRealNameRegistration : AopObject
{
///
/// 用户出生日期
///
[XmlElement("birthday")]
public string Birthday { get; set; }
///
/// 点击实名制logo跳转链接
///
[XmlElement("forward_url")]
public string ForwardUrl { get; set; }
///
/// 用户性别(M:男性/F:女性)
///
[XmlElement("gender")]
public string Gender { get; set; }
///
/// 实名制logo
///
[XmlElement("icon_url")]
public string IconUrl { get; set; }
///
/// 用户姓名
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 当账户为实名制注册时,取值为"T";否则为"F".
///
[XmlElement("real_name_registered")]
public string RealNameRegistered { get; set; }
}
}