1234567891011121314151617181920212223 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipaySecurityRiskDetectResponse : AopResponse
- {
-
-
-
- [XmlElement("risk_code")]
- public string RiskCode { get; set; }
-
-
-
- [XmlElement("risk_level")]
- public long RiskLevel { get; set; }
- }
- }
|