You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
474 B
C#

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; }
}
}