using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AuthenticationInfo Data Structure.
///
[Serializable]
public class AuthenticationInfo : AopObject
{
///
/// 身份认证场景信息
///
[XmlElement("authentication_scene")]
public AuthenticationScene AuthenticationScene { get; set; }
///
/// 标识一笔业务,业务方生成
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// 业务扩展信息
///
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
///
/// 身份认证业务用户主体信息
///
[XmlElement("principal_info")]
public PrincipalInfo PrincipalInfo { get; set; }
}
}