Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/MybankFinanceYulibaoCapitalPurchaseResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

28 lines
885 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// MybankFinanceYulibaoCapitalPurchaseResponse.
/// </summary>
public class MybankFinanceYulibaoCapitalPurchaseResponse : AopResponse
{
/// <summary>
/// 余利宝内部的交易流水号。
/// </summary>
[JsonProperty("inner_biz_no")]
public string InnerBizNo { get; set; }
/// <summary>
/// 交易结果的备注信息。
/// </summary>
[JsonProperty("remark")]
public string Remark { get; set; }
/// <summary>
/// 交易结果目前会有3种状态值1success表示交易成功、2fail表示交易失败:、3inprocess表示交易处理中。其中交易处理中的状态可以使用回查交易历史的方式查看其处理结果。
/// </summary>
[JsonProperty("trans_result")]
public string TransResult { get; set; }
}
}