NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskReconfirm...

73 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySecurityRiskReconfirmVerificatecallbackSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskReconfirmVerificatecallbackSendModel : AopObject
{
/// <summary>
/// 账号名
/// </summary>
[XmlElement("account")]
public string Account { get; set; }
/// <summary>
/// 接入的应用编号
/// </summary>
[XmlElement("app_code")]
public string AppCode { get; set; }
/// <summary>
/// 额外参数
/// </summary>
[XmlElement("extend_param")]
public string ExtendParam { get; set; }
/// <summary>
/// 风险识别流水id为风险识别的标识不敏感无需脱敏
/// </summary>
[XmlElement("identify_id")]
public string IdentifyId { get; set; }
/// <summary>
/// 核身方式
/// </summary>
[XmlElement("reauth_type")]
public string ReauthType { get; set; }
/// <summary>
/// 核身结果
/// </summary>
[XmlElement("reconfirm_result")]
public bool ReconfirmResult { get; set; }
/// <summary>
/// 场景对应的编号
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 设备指纹id
/// </summary>
[XmlElement("um_id")]
public string UmId { get; set; }
/// <summary>
/// 采集设备指纹对应的token
/// </summary>
[XmlElement("um_id_token")]
public string UmIdToken { get; set; }
/// <summary>
/// 会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}