NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipaySecurityRiskContentDe...

32 lines
871 B
C#
Raw 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.Response
{
/// <summary>
/// AlipaySecurityRiskContentDetectResponse.
/// </summary>
public class AlipaySecurityRiskContentDetectResponse : AopResponse
{
/// <summary>
/// 表示处理结果REJECTED表示拦截PASSED表示放过。
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <summary>
/// 命中的关键词列表
/// </summary>
[XmlArray("keywords")]
[XmlArrayItem("string")]
public List<string> Keywords { get; set; }
/// <summary>
/// 业务唯一识别码,可用来对应异步识别结果
/// </summary>
[XmlElement("unique_id")]
public string UniqueId { get; set; }
}
}