36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// SsdataDataserviceRiskAntifraudlistQueryResponse.
|
||
/// </summary>
|
||
public class SsdataDataserviceRiskAntifraudlistQueryResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 蚁盾对于每一次请求返回的业务号。后续可以通过此业务号进行对账
|
||
/// </summary>
|
||
[XmlElement("biz_no")]
|
||
public string BizNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 欺诈关注清单是否命中,yes标识命中,no标识未命中
|
||
/// </summary>
|
||
[XmlElement("hit")]
|
||
public string Hit { get; set; }
|
||
|
||
/// <summary>
|
||
/// 欺诈关注清单的RiskCode列表,对应的描述见产品文档
|
||
/// </summary>
|
||
[XmlElement("risk_code")]
|
||
public string RiskCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 用户唯一请求id
|
||
/// </summary>
|
||
[XmlElement("unique_id")]
|
||
public string UniqueId { get; set; }
|
||
}
|
||
}
|