using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEcapiprodCreditGetResponse.
///
public class AlipayEcapiprodCreditGetResponse : AopResponse
{
///
/// 授信结果
///
[JsonProperty("credit_result")]
public CreditResult CreditResult { get; set; }
///
/// 为了保持幂等性,返回唯一请求号
///
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}