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

31 lines
1.0 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>
/// AlipayOpenServicemarketOrderItemConfirmModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenServicemarketOrderItemConfirmModel : AopObject
{
/// <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; }
}
}