37 lines
980 B
C#
37 lines
980 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipaySecurityRiskAuthenticationCancelModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipaySecurityRiskAuthenticationCancelModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 身份认证场景信息
|
|
/// </summary>
|
|
[XmlElement("authentication_scene")]
|
|
public AuthenticationScene AuthenticationScene { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务流水号,与初始化接口保持一致
|
|
/// </summary>
|
|
[XmlElement("biz_id")]
|
|
public string BizId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务参数
|
|
/// </summary>
|
|
[XmlElement("biz_info")]
|
|
public string BizInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 身份认证初始化返回token_id
|
|
/// </summary>
|
|
[XmlElement("token_id")]
|
|
public string TokenId { get; set; }
|
|
}
|
|
}
|