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

61 lines
1.9 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>
/// AlipayTradeRepaybillOrderCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeRepaybillOrderCreateModel : AopObject
{
/// <summary>
/// 支付宝账单编号
/// </summary>
[XmlElement("bill_no")]
public string BillNo { get; set; }
/// <summary>
/// 还款的外部订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 还款的付款方用户id
/// </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; }
}
}