25 lines
747 B
C#
25 lines
747 B
C#
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; }
|
||
}
|
||
} |