NewGaoKaoApi/PaymentSDK/AliPay/Domain/RiskConfig.cs

27 lines
757 B
C#
Raw Permalink 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.Domain
{
/// <summary>
/// RiskConfig Data Structure.
/// </summary>
[Serializable]
public class RiskConfig : AopObject
{
/// <summary>
/// 类目风控信息列表为必传字段。此字段为复杂模型其中类目code为必传属性。
/// </summary>
[XmlArray("category_risks")]
[XmlArrayItem("category_risk_info")]
public List<CategoryRiskInfo> CategoryRisks { get; set; }
/// <summary>
/// 全局分段限额配置
/// </summary>
[XmlElement("quota_gradient_rule")]
public QuotaGradientRule QuotaGradientRule { get; set; }
}
}