NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignInte...

67 lines
2.4 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>
/// KoubeiMarketingCampaignIntelligentShopConsultModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignIntelligentShopConsultModel : AopObject
{
/// <summary>
/// 根据不同场景,过滤不同的门店数据,可参考值:CREATE_NORMAL:正常创建;RENEWAL_OLD:原方案续期;RENEWAL_NEW:新方案续期
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 操作上下文
/// </summary>
[XmlElement("operator_context")]
public PromoOperatorInfo OperatorContext { get; set; }
/// <summary>
/// 外部业务id请尽量保持足够的复杂方便定位数据来源
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 当前页码默认“1”
/// </summary>
[XmlElement("page_index")]
public string PageIndex { get; set; }
/// <summary>
/// 每页项数[1, 500] 默认500
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 智能营销方案的方案idtemplate_code替代该值无需传递
/// </summary>
[XmlElement("plan_id")]
public string PlanId { get; set; }
/// <summary>
/// 结合biz_scene一起使用,值为RENEWAL_OLD:原方案续期、RENEWAL_NEW:新方案续期,要求必传
/// </summary>
[XmlElement("promo_id")]
public string PromoId { get; set; }
/// <summary>
/// 营销模板的编号默认GENERAL_EXPERIENCE不传值 可选枚举: GENERAL_EXPERIENCE全场体验 GENERAL_NORMAL全场普通 GENERAL_20171212全场2017双12版 CROWD_EXPERIENCE千人千券体验 CROWD_NORMAL千人千券普通 CROWD_20171212千人千券2017双12版
/// </summary>
[XmlElement("template_code")]
public string TemplateCode { get; set; }
}
}