NewGaoKaoApi/PaymentSDK/AliPay/Domain/InteligentMerchantPromo.cs

25 lines
735 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>
/// InteligentMerchantPromo Data Structure.
/// </summary>
[Serializable]
public class InteligentMerchantPromo : AopObject
{
/// <summary>
/// 商户自运营活动当promo_type='GENERAL_MERCHANT',该对象不能为空,其他类型无效
/// </summary>
[XmlElement("general_promo")]
public InteligentGeneralMerchantPromo GeneralPromo { get; set; }
/// <summary>
/// 子活动营销类型枚举值GENERAL_MERCHANT商户自运营活动
/// </summary>
[XmlElement("promo_type")]
public string PromoType { get; set; }
}
}