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.

39 lines
1.1 KiB
C#

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;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipaySecurityProdAmlriskQueryResponse.
/// </summary>
public class AlipaySecurityProdAmlriskQueryResponse : AopResponse
{
/// <summary>
/// 事件ID由入参得来
/// </summary>
[XmlElement("event_id")]
public string EventId { get; set; }
/// <summary>
/// 根据反洗钱风险检查该商户是否有风险有风险则为Yes无风险则为No
/// </summary>
[XmlElement("has_risk")]
public string HasRisk { get; set; }
/// <summary>
/// 商户ID由入参得来
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// 当发现有风险时以列表形式表示风险详情风险点可以有0个至多个。
/// </summary>
[XmlArray("risks")]
[XmlArrayItem("merchant_screen_hit")]
public List<MerchantScreenHit> Risks { get; set; }
}
}