NewGaoKaoApi/PaymentSDK/AliPay/Response/HuanxuTradeOrderQueryRespon...

48 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// HuanxuTradeOrderQueryResponse.
/// </summary>
public class HuanxuTradeOrderQueryResponse : AopResponse
{
/// <summary>
/// 支付,打款或者退款的操作金额
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 聚合支付的支付渠道,支付宝分配。
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 支付、打款、退款时候支付宝返回的唯一凭证id调用方查询时候建议优先传入该值内部处理时优先以该值为准。instruction_id和out_request_no不能同时为空。
/// </summary>
[XmlElement("instruction_id")]
public string InstructionId { get; set; }
/// <summary>
/// 指令类型表明该笔查询是支付打款还是退款跟out_request_no一起使用。 支付PAY 打款DISBURSE 退款REFUND
/// </summary>
[XmlElement("instruction_type")]
public string InstructionType { get; set; }
/// <summary>
/// 支付、打款或退款请求号out_request_no和instruction_id不能同时为空。
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 支付,打款或者退款的状态,目前支持如下值: WAIT指令操作已受理 SUCCESS指令操作成功 FAIL指令操作失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}