接口文件
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayFundCouponOrderAppPayModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayFundCouponOrderAppPayModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 需要支付的金额,单位为:元(人民币),精确到小数点后两位 取值范围:[0.01,100000000.00]
|
||||
/// </summary>
|
||||
[JsonProperty("amount")]
|
||||
public string Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 业务扩展参数,用于商户的特定业务信息的传递,json格式
|
||||
/// </summary>
|
||||
[JsonProperty("extra_param")]
|
||||
public string ExtraParam { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 业务订单的简单描述,如商品名称等 长度不超过100个字母或50个汉字
|
||||
/// </summary>
|
||||
[JsonProperty("order_title")]
|
||||
public string OrderTitle { 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>
|
||||
/// 该笔订单允许的最晚付款时间,逾期将关闭该笔订单 取值范围:1m~7d。m-分钟,h-小时,d-天。 该参数数值不接受小数点, 如 1.5h,可转换为90m,如果为空,默认1h
|
||||
/// </summary>
|
||||
[JsonProperty("pay_timeout")]
|
||||
public string PayTimeout { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user