NewGaoKaoApi/PaymentSDK/AliPay/Domain/RiskResult.cs

25 lines
574 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;
namespace Aop.Api.Domain
{
/// <summary>
/// RiskResult Data Structure.
/// </summary>
[Serializable]
public class RiskResult : AopObject
{
/// <summary>
/// 风险类型比如0表示广告
/// </summary>
[XmlElement("risk_type")]
public string RiskType { get; set; }
/// <summary>
/// 风险识别分数0-100分值越大风险越高
/// </summary>
[XmlElement("score")]
public string Score { get; set; }
}
}