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.

25 lines
603 B
C#

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