Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/RefundUnfreezeResult.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

48 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// RefundUnfreezeResult Data Structure.
/// </summary>
[Serializable]
public class RefundUnfreezeResult : AopObject
{
/// <summary>
/// 冻结单号
/// </summary>
[JsonProperty("freeze_no")]
public string FreezeNo { get; set; }
/// <summary>
/// 解冻结果码
/// </summary>
[JsonProperty("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 解冻状态。S成功F失败。
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
/// <summary>
/// 解冻金额
/// </summary>
[JsonProperty("unfreeze_amount")]
public string UnfreezeAmount { get; set; }
/// <summary>
/// 解冻单号
/// </summary>
[JsonProperty("unfreeze_no")]
public string UnfreezeNo { get; set; }
/// <summary>
/// 解冻时间
/// </summary>
[JsonProperty("unfreeze_time")]
public string UnfreezeTime { get; set; }
}
}