28 lines
788 B
C#
28 lines
788 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// SsdataDataserviceRiskAntifraudVerifyResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class SsdataDataserviceRiskAntifraudVerifyResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 蚁盾对于每一次请求返回的业务号。后续可以通过此业务号进行对账
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("biz_no")]
|
||
|
|
public string BizNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 用户唯一请求id
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("unique_id")]
|
||
|
|
public string UniqueId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// <a href="https://doc.open.alipay.com/docs/doc.htm?treeId=272&articleId=105917&docType=1">验证code列表</a>
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("verify_code")]
|
||
|
|
public string VerifyCode { get; set; }
|
||
|
|
}
|
||
|
|
}
|