37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
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>
|
||
/// 业务风险判断的具体参数,该参数是JsonString,Json中具体的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; }
|
||
}
|
||
}
|