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

31 lines
835 B
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>
/// KoubeiMarketingCampaignOpenDeliveryDeleteModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignOpenDeliveryDeleteModel : AopObject
{
/// <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; }
}
}