using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayTrustUserScoreGetResponse. /// public class AlipayTrustUserScoreGetResponse : AopResponse { /// /// 芝麻信用通过模型计算出的该用户的芝麻信用评分 /// [XmlElement("ali_trust_score")] public AliTrustScore AliTrustScore { get; set; } } }