NewGaoKaoApi/PaymentSDK/AliPay/Domain/RefundUnfreezeResult.cs

49 lines
1.2 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>
/// RefundUnfreezeResult Data Structure.
/// </summary>
[Serializable]
public class RefundUnfreezeResult : AopObject
{
/// <summary>
/// 冻结单号
/// </summary>
[XmlElement("freeze_no")]
public string FreezeNo { get; set; }
/// <summary>
/// 解冻结果码
/// </summary>
[XmlElement("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 解冻状态。S成功F失败。
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 解冻金额
/// </summary>
[XmlElement("unfreeze_amount")]
public string UnfreezeAmount { get; set; }
/// <summary>
/// 解冻单号
/// </summary>
[XmlElement("unfreeze_no")]
public string UnfreezeNo { get; set; }
/// <summary>
/// 解冻时间
/// </summary>
[XmlElement("unfreeze_time")]
public string UnfreezeTime { get; set; }
}
}