NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskContentPe...

43 lines
1.3 KiB
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>
/// AlipaySecurityRiskContentPerceptionSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskContentPerceptionSendModel : AopObject
{
/// <summary>
/// 业务时间。日期格式化后的字符串。
/// </summary>
[XmlElement("business_time")]
public string BusinessTime { get; set; }
/// <summary>
/// 创建时间。日期格式化后的字符串和business_time区分标识计算引擎得出指标的时间。
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 持续时间。单位默认1min。
/// </summary>
[XmlElement("duration")]
public long Duration { get; set; }
/// <summary>
/// 风险感知度量的键
/// </summary>
[XmlElement("metric")]
public string Metric { get; set; }
/// <summary>
/// 风险感知度量的值。对应为metric的值。通常是一个可解析的json串。
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}