NewGaoKaoApi/PaymentSDK/AliPay/Domain/InteligentGeneralMerchantPr...

88 lines
2.7 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// InteligentGeneralMerchantPromo Data Structure.
/// </summary>
[Serializable]
public class InteligentGeneralMerchantPromo : AopObject
{
/// <summary>
/// 营销活动的id如merchant_promo_typeCONSUME_SEND即消费送的活动id
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 圈人限制条件
/// </summary>
[XmlElement("crowd_constraint")]
public CrowdConstraintInfo CrowdConstraint { get; set; }
/// <summary>
/// 活动描述信息,该信息有可能会在店铺详情页漏出,请自己填写
/// </summary>
[XmlElement("desc")]
public string Desc { get; set; }
/// <summary>
/// 活动扩展信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 营销活动预测效果
/// </summary>
[XmlElement("forecast_effect")]
public IntelligentPromoEffect ForecastEffect { get; set; }
/// <summary>
/// 活动预算
/// </summary>
[XmlElement("inteligent_budget")]
public InteligentBudgetInfo InteligentBudget { get; set; }
/// <summary>
/// 活动限制信息
/// </summary>
[XmlElement("inteligent_constraint")]
public InteligentConstraintInfo InteligentConstraint { get; set; }
/// <summary>
/// 营销工具集合。主要是活动涉及到的奖品信息
/// </summary>
[XmlArray("inteligent_promo_tools")]
[XmlArrayItem("inteligent_promo_tool")]
public List<InteligentPromoTool> InteligentPromoTools { get; set; }
/// <summary>
/// 投放渠道信息
/// </summary>
[XmlArray("inteligent_publish_channels")]
[XmlArrayItem("inteligent_publish_channel")]
public List<InteligentPublishChannel> InteligentPublishChannels { get; set; }
/// <summary>
/// 营销活动类型枚举DIRECT_SEND直发奖CONSUME_SEND消费送
/// </summary>
[XmlElement("merchant_promo_type")]
public string MerchantPromoType { get; set; }
/// <summary>
/// 营销活动名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 子营销活动对应的模板id
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}