NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayTradeRepaybillOrderCr...

73 lines
2.4 KiB
C#
Raw Permalink 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>
/// AlipayTradeRepaybillOrderCreateandpayModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeRepaybillOrderCreateandpayModel : AopObject
{
/// <summary>
/// 支付宝账单编号
/// </summary>
[XmlElement("bill_no")]
public string BillNo { get; set; }
/// <summary>
/// 扩展参数。使用前需要和支付宝先约定key值。
/// </summary>
[XmlElement("extend_params")]
public string ExtendParams { get; set; }
/// <summary>
/// 还款外部订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 还款的付款uid
/// </summary>
[XmlElement("payer_user_id")]
public string PayerUserId { get; set; }
/// <summary>
/// 还款金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
/// </summary>
[XmlElement("repay_amount")]
public string RepayAmount { get; set; }
/// <summary>
/// 还款收款方名称
/// </summary>
[XmlElement("repay_payee_name")]
public string RepayPayeeName { get; set; }
/// <summary>
/// 还款的收单产品码,支付宝定义
/// </summary>
[XmlElement("repay_product_code")]
public string RepayProductCode { get; set; }
/// <summary>
/// 还款说明
/// </summary>
[XmlElement("repay_remark")]
public string RepayRemark { get; set; }
/// <summary>
/// 该笔还款单允许的最晚还款时间逾期将关闭订单。取值范围1m15d。m-分钟h-小时d-天1c-当天1c-当天的情况下无论交易何时创建都在0点关闭。 该参数数值不接受小数点, 如 1.5h,可转换为 90m
/// </summary>
[XmlElement("repay_timeout_express")]
public string RepayTimeoutExpress { get; set; }
/// <summary>
/// 指定支付渠道,如果指定了渠道,用户只能用该渠道进行支付,具体渠道值由支付宝分配。
/// </summary>
[XmlElement("specify_pay_channels")]
public string SpecifyPayChannels { get; set; }
}
}