NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignOpen...

37 lines
1.1 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>
/// KoubeiMarketingCampaignOpenDeliveryCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignOpenDeliveryCreateModel : AopObject
{
/// <summary>
/// 详情设置会根据delivery_type字段类型不同而格式不同整体是json结构。详细说明见链接https://lark.alipay.com/xiaoling.zwt/idg11s/mhx33i
/// </summary>
[XmlElement("delivery_content")]
public string DeliveryContent { get; set; }
/// <summary>
/// 店铺页投放内容的类型。目前支持的类型有1. gift_card
/// </summary>
[XmlElement("delivery_type")]
public string DeliveryType { get; set; }
/// <summary>
/// 商户的PID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 内容投放的门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}