using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcapiprodCreditGetResponse. /// public class AlipayEcapiprodCreditGetResponse : AopResponse { /// /// 授信结果 /// [XmlElement("credit_result")] public CreditResult CreditResult { get; set; } /// /// 为了保持幂等性,返回唯一请求号 /// [XmlElement("request_id")] public string RequestId { get; set; } } }