NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskRiskscanS...

37 lines
1.3 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>
/// AlipaySecurityRiskRiskscanSingleQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskRiskscanSingleQueryModel : AopObject
{
/// <summary>
/// 蚂蚁信息安全平台为接入方分配的业务key必须正确
/// </summary>
[XmlElement("app_key")]
public string AppKey { get; set; }
/// <summary>
/// 业务风险判断的具体参数该参数是JsonStringJson中具体的key在接入信息安全平台时约定。
/// </summary>
[XmlElement("event_data")]
public string EventData { get; set; }
/// <summary>
/// 蚂蚁信息安全平台为接入方分配的业务类型,业务类型标识了具体识别的风险内容,例如:识别入职员工的风险,识别供应商的舞弊风险等。
/// </summary>
[XmlElement("event_type")]
public string EventType { get; set; }
/// <summary>
/// 蚂蚁信息安全平台为业务方分配的业务密钥,必须正确。
/// </summary>
[XmlElement("secret_key")]
public string SecretKey { get; set; }
}
}