Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipaySecurityRiskContentResultGetModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

24 lines
655 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipaySecurityRiskContentResultGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskContentResultGetModel : AopObject
{
/// <summary>
/// 应用场景
/// </summary>
[JsonProperty("app_scene")]
public string AppScene { get; set; }
/// <summary>
/// alipay.security.risk.content.analyze 内容风险识别接口服务中的内容业务ID用于进行异步识别结果的索引查询
/// </summary>
[JsonProperty("app_scene_data_id")]
public string AppSceneDataId { get; set; }
}
}