using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipaySecurityRiskContentResultGetModel Data Structure.
///
[Serializable]
public class AlipaySecurityRiskContentResultGetModel : AopObject
{
///
/// 应用场景
///
[XmlElement("app_scene")]
public string AppScene { get; set; }
///
/// alipay.security.risk.content.analyze (内容风险识别接口服务)中的内容业务ID,用于进行异步识别结果的索引查询
///
[XmlElement("app_scene_data_id")]
public string AppSceneDataId { get; set; }
///
/// 内容检测事件id,根据此id查询异步检测结果
///
[XmlElement("event_id")]
public string EventId { get; set; }
}
}