using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayTrustUserNontokenRiskidentifyGetResponse.
///
public class AlipayTrustUserNontokenRiskidentifyGetResponse : AopResponse
{
///
/// 风险识别结果
///
[XmlElement("ali_trust_risk_identify")]
public AliTrustRiskIdentify AliTrustRiskIdentify { get; set; }
///
/// 服务窗返回码
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 服务窗返回码含义
///
[XmlElement("msg")]
public string Msg { get; set; }
}
}