Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcapiprodDrawndnLendingrecordQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

25 lines
747 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}