NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignDeta...

25 lines
760 B
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>
/// KoubeiMarketingCampaignDetailInfoQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignDetailInfoQueryModel : AopObject
{
/// <summary>
/// 营销活动id配合《店铺优惠查询alipay.offline.market.shop.discount.query 》接口使用该接口返回camp_list列表中的biz_id则对应该id。
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 适用门店限制返回数量
/// </summary>
[XmlElement("shop_limit_count")]
public long ShopLimitCount { get; set; }
}
}