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

57 lines
1.8 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>
/// KoubeiMarketingCampaignIntelligentPromoConsultModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignIntelligentPromoConsultModel : AopObject
{
/// <summary>
/// 扩展信息以key-value的形式传递
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { 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>
/// 原智能方案id
/// </summary>
[XmlElement("parent_promo_id")]
public string ParentPromoId { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 当全场普通和单品普通方案时必传,体验方案不用传
/// </summary>
[XmlArray("shop_ids")]
[XmlArrayItem("string")]
public List<string> ShopIds { get; set; }
/// <summary>
/// 营销模板的编号GENERAL_EXPERIENCE全场体验GENERAL_NORMAL全场普通ITEM_EXPERIENCE单品体验ITEM_NORMAL单品普通
/// </summary>
[XmlElement("template_code")]
public string TemplateCode { get; set; }
}
}