using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// RiskRankInfoCode Data Structure. /// [Serializable] public class RiskRankInfoCode : AopObject { /// /// infocode /// [JsonProperty("code")] public string Code { get; set; } /// /// 此infocode在总的得分中的贡献度 /// [JsonProperty("contribution_degree")] public long ContributionDegree { get; set; } /// /// 风险描述 /// [JsonProperty("desc")] public string Desc { get; set; } /// /// 模型名称 /// [JsonProperty("model_name")] public string ModelName { get; set; } } }