using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MerchantScreenHit Data Structure.
///
[Serializable]
public class MerchantScreenHit : AopObject
{
///
/// 送检的实体类型,如CEO,控股人,等
///
[JsonProperty("input_type")]
public string InputType { get; set; }
///
/// 命中详情
///
[JsonProperty("risk_detail")]
public string RiskDetail { get; set; }
}
}