NewGaoKaoApi/PaymentSDK/AliPay/Domain/DishonorOrder.cs

61 lines
1.9 KiB
C#
Raw 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.Domain
{
/// <summary>
/// DishonorOrder Data Structure.
/// </summary>
[Serializable]
public class DishonorOrder : AopObject
{
/// <summary>
/// 退票金额:单位:元。 只支持2位小数小数点前最大支持13位金额必须大于0。
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 退票时间格式为yyyy-MM-dd HH:mm:ss。
/// </summary>
[XmlElement("dishonor_date")]
public string DishonorDate { get; set; }
/// <summary>
/// 退票原因:银行返回的退票原因。
/// </summary>
[XmlElement("fail_reason")]
public string FailReason { get; set; }
/// <summary>
/// 支付宝转账单据号。
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 商户转账唯一订单号:发起转账来源方定义的转账单据号。该参数的赋值均以查询结果中的out_biz_no为准。
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 支付时间:格式为yyyy-MM-dd HH:mm:ss。转账失败不返回。
/// </summary>
[XmlElement("pay_date")]
public string PayDate { get; set; }
/// <summary>
/// 付款方账户:付款方支付宝唯一标识2088开头16位数字字符串或支付宝会员登录号邮箱或手机号
/// </summary>
[XmlElement("payer_account")]
public string PayerAccount { get; set; }
/// <summary>
/// 提现流水号。
/// </summary>
[XmlElement("payment_no")]
public string PaymentNo { get; set; }
}
}