NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringOrderPayDisbu...

55 lines
1.8 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>
/// KoubeiCateringOrderPayDisburseModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringOrderPayDisburseModel : AopObject
{
/// <summary>
/// 支付授权码25~30开头的长度为16~24位的数字实际字符串长度以开发者获取的付款码长度为准
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 是否享受会员价。如果为true菜明细里面会按照会员价没有改价情况下作为单品价格咨询单品券优惠
/// </summary>
[XmlElement("member_flag")]
public bool MemberFlag { get; set; }
/// <summary>
/// 外部支付订单号唯一标识本次支付的requestID
/// </summary>
[XmlElement("out_pay_no")]
public string OutPayNo { get; set; }
/// <summary>
/// pos业务订单外部主键信息
/// </summary>
[XmlElement("pos_order_key")]
public PosOrderKey PosOrderKey { get; set; }
/// <summary>
/// 交易超时时间 选填默认3分钟.透传给交易设置可支持如下格式d:天h:小时,m:分钟。 示例5d,1h,3m
/// </summary>
[XmlElement("timeout")]
public string Timeout { get; set; }
/// <summary>
/// 订单付款金额,以元为单位,精确到分
/// </summary>
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
/// <summary>
/// 是否整单不可打折
/// </summary>
[XmlElement("undiscountable")]
public bool Undiscountable { get; set; }
}
}