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