using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
///
/// AlipaySecurityRiskContentDetectResponse.
///
public class AlipaySecurityRiskContentDetectResponse : AopResponse
{
///
/// 表示处理结果,REJECTED表示拦截,PASSED表示放过。
///
[XmlElement("action")]
public string Action { get; set; }
///
/// 命中的关键词列表
///
[XmlArray("keywords")]
[XmlArrayItem("string")]
public List Keywords { get; set; }
///
/// 业务唯一识别码,可用来对应异步识别结果
///
[XmlElement("unique_id")]
public string UniqueId { get; set; }
}
}