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

28 lines
837 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayFundTransToaccountTransferResponse.
/// </summary>
public class AlipayFundTransToaccountTransferResponse : AopResponse
{
/// <summary>
/// 支付宝转账单据号,成功一定返回,失败可能不返回也可能返回。
/// </summary>
[JsonProperty("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 商户转账唯一订单号:发起转账来源方定义的转账单据号。请求时对应的参数,原样返回。
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 支付时间格式为yyyy-MM-dd HH:mm:ss仅转账成功返回。
/// </summary>
[JsonProperty("pay_date")]
public string PayDate { get; set; }
}
}