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

70 lines
2.2 KiB
C#
Raw Permalink 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>
/// AlipayAcquirePrecreateResponse.
/// </summary>
public class AlipayAcquirePrecreateResponse : AopResponse
{
/// <summary>
/// 详细错误码。对返回响应码进行原因说明 当result_code响应码为SUCCESS时不返回该参数。
/// </summary>
[JsonProperty("detail_error_code")]
public string DetailErrorCode { get; set; }
/// <summary>
/// 对详细错误码进行文字说明 当result_code响应码为SUCCESS时不返回该参数
/// </summary>
[JsonProperty("detail_error_des")]
public string DetailErrorDes { get; set; }
/// <summary>
/// 错误代码。 请求成功时,不存在本参数; 请求失败时,本参数为错误代码
/// </summary>
[JsonProperty("error")]
public string Error { get; set; }
/// <summary>
/// 请求是否成功。请求成功不代表业务处理成功 T代表成功 F代表失败
/// </summary>
[JsonProperty("is_success")]
public string IsSuccess { get; set; }
/// <summary>
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回
/// </summary>
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 二维码图片的URL地址
/// </summary>
[JsonProperty("pic_url")]
public string PicUrl { get; set; }
/// <summary>
/// 二维码码串的内容
/// </summary>
[JsonProperty("qr_code")]
public string QrCode { get; set; }
/// <summary>
/// 预下单处理结果响应码。 SUCCESS预下单成功 FAIL预下单失败 UNKNOWN结果未知
/// </summary>
[JsonProperty("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 支付宝交易号。该交易在支付宝系统中的交易流水号。 最短16位最长64位
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
/// <summary>
/// 凭证类型目前仅支持qrcode二维码
/// </summary>
[JsonProperty("voucher_type")]
public string VoucherType { get; set; }
}
}