using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AntMerchantExpandStoreShopserviceDeleteModel Data Structure.
///
[Serializable]
public class AntMerchantExpandStoreShopserviceDeleteModel : AopObject
{
///
/// 外部业务号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 线下店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 场景服务ID
///
[XmlElement("shop_service_id")]
public string ShopServiceId { get; set; }
///
/// SKU的ID
///
[XmlElement("sku_id")]
public string SkuId { get; set; }
///
/// 线上门店ID,插件协议的入参
///
[XmlElement("store_open_id")]
public string StoreOpenId { get; set; }
}
}