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

42 lines
1.8 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>
/// AlipayFundAuthOperationCancelModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundAuthOperationCancelModel : AopObject
{
/// <summary>
/// 支付宝授权资金订单号,与商户的授权资金订单号不能同时为空,二者都存在时,以支付宝资金授权订单号为准,该参数与支付宝授权资金操作流水号配对使用。
/// </summary>
[JsonProperty("auth_no")]
public string AuthNo { get; set; }
/// <summary>
/// 支付宝的授权资金操作流水号,与商户的授权资金操作流水号不能同时为空,二者都存在时,以支付宝的授权资金操作流水号为准,该参数与支付宝授权资金订单号配对使用。
/// </summary>
[JsonProperty("operation_id")]
public string OperationId { get; set; }
/// <summary>
/// 商户的授权资金订单号,与支付宝的授权资金订单号不能同时为空,二者都存在时,以支付宝的授权资金订单号为准,该参数与商户的授权资金操作流水号配对使用。
/// </summary>
[JsonProperty("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 商户的授权资金操作流水号,与支付宝的授权资金操作流水号不能同时为空,二者都存在时,以支付宝的授权资金操作流水号为准,该参数与商户的授权资金订单号配对使用。
/// </summary>
[JsonProperty("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 商户对本次撤销操作的附言描述长度不超过100个字母或50个汉字
/// </summary>
[JsonProperty("remark")]
public string Remark { get; set; }
}
}