using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipaySecurityRiskDetectResponse. /// public class AlipaySecurityRiskDetectResponse : AopResponse { /// /// 结果码 /// [XmlElement("risk_code")] public string RiskCode { get; set; } /// /// 风险等级 /// [XmlElement("risk_level")] public long RiskLevel { get; set; } } }