123456789101112131415161718 |
- using System;
- using System.Xml.Serialization;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
- /// <summary>
- /// AlipayTrustUserRiskidentifyGetResponse.
- /// </summary>
- public class AlipayTrustUserRiskidentifyGetResponse : AopResponse
- {
- /// <summary>
- /// 风险识别结果
- /// </summary>
- [XmlElement("ali_trust_risk_identify")]
- public AliTrustRiskIdentify AliTrustRiskIdentify { get; set; }
- }
- }
|