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

36 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>
/// AlipayFundAuthOrderUnfreezeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundAuthOrderUnfreezeModel : AopObject
{
/// <summary>
/// 本次操作解冻的金额,单位为:元(人民币),精确到小数点后两位,取值范围:[0.01,100000000.00]
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 支付宝资金授权订单号
/// </summary>
[JsonProperty("auth_no")]
public string AuthNo { get; set; }
/// <summary>
/// 商户本次资金操作的请求流水号,同一商户每次不同的资金操作请求,商户请求流水号不能重复
/// </summary>
[JsonProperty("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 商户对本次解冻操作的附言描述长度不超过100个字母或50个汉字
/// </summary>
[JsonProperty("remark")]
public string Remark { get; set; }
}
}