NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringOrderBillCanc...

31 lines
881 B
C#
Raw 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>
/// KoubeiCateringOrderBillCancelModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringOrderBillCancelModel : AopObject
{
/// <summary>
/// 取消类型RENEW-退款并重新生成新订单反结场景REFUND-仅退款不生成新订单(先付撤销、外卖退款场景)
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <summary>
/// 取消时间
/// </summary>
[XmlElement("cancel_time")]
public string CancelTime { get; set; }
/// <summary>
/// pos业务订单外部主键信息
/// </summary>
[XmlElement("pos_order_key")]
public PosOrderKey PosOrderKey { get; set; }
}
}