接口文件
This commit is contained in:
@@ -0,0 +1,112 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayFundCouponOperationQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayFundCouponOperationQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 该支付宝操作流水操作金额,单位为:元(人民币)
|
||||
/// </summary>
|
||||
[JsonProperty("amount")]
|
||||
public string Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝资金授权订单号
|
||||
/// </summary>
|
||||
[JsonProperty("auth_no")]
|
||||
public string AuthNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户请求创建预授权订单时传入的扩展参数(merchantExt, orderExpiredTime)
|
||||
/// </summary>
|
||||
[JsonProperty("extra_param")]
|
||||
public string ExtraParam { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 资金授权单据操作流水创建时间, 格式:YYYY-MM-DD HH:MM:SS
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_create")]
|
||||
public string GmtCreate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝账务处理成功时间, 格式:YYYY-MM-DD HH:MM:SS
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_trans")]
|
||||
public string GmtTrans { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝资金操作流水号
|
||||
/// </summary>
|
||||
[JsonProperty("operation_id")]
|
||||
public string OperationId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝资金操作类型。 目前支持: PAY:支付 REFUND:退款
|
||||
/// </summary>
|
||||
[JsonProperty("operation_type")]
|
||||
public string OperationType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 业务订单的简单描述,如商品名称等
|
||||
/// </summary>
|
||||
[JsonProperty("order_title")]
|
||||
public string OrderTitle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户的授权资金订单号
|
||||
/// </summary>
|
||||
[JsonProperty("out_order_no")]
|
||||
public string OutOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户资金操作的请求流水号
|
||||
/// </summary>
|
||||
[JsonProperty("out_request_no")]
|
||||
public string OutRequestNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收款方支付宝账号(Email或手机号)。仅作展示使用,默认会加“*”号处理
|
||||
/// </summary>
|
||||
[JsonProperty("payee_logon_id")]
|
||||
public string PayeeLogonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收款方支付宝账号对应的支付宝唯一用户号。 以2088开头的16位纯数字组成。
|
||||
/// </summary>
|
||||
[JsonProperty("payee_user_id")]
|
||||
public string PayeeUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 付款方支付宝账号(Email或手机号)。仅作展示使用,默认会加“*”号处理
|
||||
/// </summary>
|
||||
[JsonProperty("payer_logon_id")]
|
||||
public string PayerLogonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 付款方支付宝账号对应的支付宝唯一用户号。 以2088开头的16位纯数字组成。
|
||||
/// </summary>
|
||||
[JsonProperty("payer_user_id")]
|
||||
public string PayerUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户对本次操作的附言描述,长度不超过100个字母或50个汉字
|
||||
/// </summary>
|
||||
[JsonProperty("remark")]
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 资金操作流水的状态, 目前支持: INIT:初始 SUCCESS:成功 CLOSED:关闭
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 红包总退回金额,单位为:元(人民币)
|
||||
/// </summary>
|
||||
[JsonProperty("total_pay_refund_amount")]
|
||||
public string TotalPayRefundAmount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user