NewGaoKaoApi/PaymentSDK/AliPay/Domain/DepositBackInfo.cs

43 lines
1.2 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.Domain
{
/// <summary>
/// DepositBackInfo Data Structure.
/// </summary>
[Serializable]
public class DepositBackInfo : AopObject
{
/// <summary>
/// 银行响应时间格式为yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("bank_ack_time")]
public string BankAckTime { get; set; }
/// <summary>
/// 银行卡冲退金额
/// </summary>
[XmlElement("dback_amount")]
public string DbackAmount { get; set; }
/// <summary>
/// 银行卡冲退状态。S-成功F-失败P-处理中。银行卡冲退失败,资金自动转入用户支付宝余额。
/// </summary>
[XmlElement("dback_status")]
public string DbackStatus { get; set; }
/// <summary>
/// 预估银行到账时间格式为yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("est_bank_receipt_time")]
public string EstBankReceiptTime { get; set; }
/// <summary>
/// 是否存在银行卡冲退信息。
/// </summary>
[XmlElement("has_deposit_back")]
public string HasDepositBack { get; set; }
}
}