NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskContentRe...

31 lines
913 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>
/// AlipaySecurityRiskContentResultGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskContentResultGetModel : AopObject
{
/// <summary>
/// 应用场景
/// </summary>
[XmlElement("app_scene")]
public string AppScene { get; set; }
/// <summary>
/// alipay.security.risk.content.analyze 内容风险识别接口服务中的内容业务ID用于进行异步识别结果的索引查询
/// </summary>
[XmlElement("app_scene_data_id")]
public string AppSceneDataId { get; set; }
/// <summary>
/// 内容检测事件id根据此id查询异步检测结果
/// </summary>
[XmlElement("event_id")]
public string EventId { get; set; }
}
}