using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InteligentMerchantPromo Data Structure.
///
[Serializable]
public class InteligentMerchantPromo : AopObject
{
///
/// 商户自运营活动,当promo_type='GENERAL_MERCHANT',该对象不能为空,其他类型无效
///
[XmlElement("general_promo")]
public InteligentGeneralMerchantPromo GeneralPromo { get; set; }
///
/// 子活动营销类型;枚举值:(GENERAL_MERCHANT:商户自运营活动)
///
[XmlElement("promo_type")]
public string PromoType { get; set; }
}
}