NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenServicemarketOrde...

37 lines
1.2 KiB
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>
/// AlipayOpenServicemarketOrderItemCancelModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenServicemarketOrderItemCancelModel : AopObject
{
/// <summary>
/// 当前门店区域不支持实施
/// </summary>
[XmlElement("cancel_reason")]
public string CancelReason { get; set; }
/// <summary>
/// 订购服务订单ID
/// </summary>
[XmlElement("commodity_order_id")]
public string CommodityOrderId { get; set; }
/// <summary>
/// 商家订购服务选择的某一小程序的APPID如果该订单为蚂蚁服务市场发布的小程序插件服务所产生的订单则此字段必填
/// </summary>
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
/// <summary>
/// 商家订购服务选择的某一门店的ID如果该订单为口碑服务市场发布的服务所产生的订单则此字段必填
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}