You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
786 B
C#

9 months ago
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>
/// <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; }
}
}