NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaCreditAntifraudVerifyR...

38 lines
1.3 KiB
C#
Raw 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;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// ZhimaCreditAntifraudVerifyResponse.
/// </summary>
public class ZhimaCreditAntifraudVerifyResponse : AopResponse
{
/// <summary>
/// 芝麻信用对于每一次请求返回的业务号。后续可以通过此业务号进行对账
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 决策结果可空取值当前为REJECT\REVIEW\PASS产品定制使用。根据产品定制配置对结果进行决策返回
/// </summary>
[XmlElement("decision_result")]
public string DecisionResult { get; set; }
/// <summary>
/// 方案ID可空产品定制使用。在线可能会存在多个方案并行方案ID标识当前请求使用的在线方案
/// </summary>
[XmlElement("solution_id")]
public string SolutionId { get; set; }
/// <summary>
/// <a href="https://doc.open.alipay.com/docs/doc.htm?treeId=272&articleId=105917&docType=1">验证code列表</a>
/// </summary>
[XmlArray("verify_code")]
[XmlArrayItem("string")]
public List<string> VerifyCode { get; set; }
}
}