NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataRetailDm...

27 lines
718 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMarketingDataRetailDmQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataRetailDmQueryModel : AopObject
{
/// <summary>
/// 内容ID调用koubei.marketing.campaign.retail.dm.create创建内容时返回的内容ID
/// </summary>
[XmlElement("content_id")]
public string ContentId { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlArray("shop_ids")]
[XmlArrayItem("string")]
public List<string> ShopIds { get; set; }
}
}