Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcapiprodDrawndnLendingrecordQueryResponse.cs

25 lines
747 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcapiprodDrawndnLendingrecordQueryResponse.
/// </summary>
public class AlipayEcapiprodDrawndnLendingrecordQueryResponse : AopResponse
{
/// <summary>
/// 放款流水
/// </summary>
[JsonProperty("lending_records")]
public List<LendingRecords> LendingRecords { get; set; }
/// <summary>
/// 代表一次请求的唯一编号用于追溯问题多方联调查询问题时ISV 可以提供该RequestId给网关网关用来查询本次请求的具体日志
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}