NewGaoKaoApi/PaymentSDK/AliPay/Domain/CreditFreezeSubOrder.cs

49 lines
1.7 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>
/// CreditFreezeSubOrder Data Structure.
/// </summary>
[Serializable]
public class CreditFreezeSubOrder : AopObject
{
/// <summary>
/// 用信冻结额度,单位为元,取值范围[0.01,100000000]精确到小数点后2位
/// </summary>
[XmlElement("credit_amount")]
public string CreditAmount { get; set; }
/// <summary>
/// 子订单扩展信息json格式字符串该部分信息根据不同业务需要传入不同的内容需要提前与业务方进行沟通
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 应履约时间(用户应该支付尾款的最后截止时间)格式必须为yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("fulfill_cutoff_time")]
public string FulfillCutoffTime { get; set; }
/// <summary>
/// 物品价值,单位为元,取值范围[0.01,100000000]精确到小数点后2位
/// </summary>
[XmlElement("goods_amount")]
public string GoodsAmount { get; set; }
/// <summary>
/// 物品名称描述iPhone XS Max商品原始显示名称已通过脱敏处理
/// </summary>
[XmlElement("goods_name")]
public string GoodsName { get; set; }
/// <summary>
/// 商户子订单号如果只有主订单与子订单为1:1子订单号可以与主订单号一致
/// </summary>
[XmlElement("sub_out_order_no")]
public string SubOutOrderNo { get; set; }
}
}