You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB
C#

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;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingDataRetailDmQueryResponse.
/// </summary>
public class KoubeiMarketingDataRetailDmQueryResponse : AopResponse
{
/// <summary>
/// 内容ID
/// </summary>
[XmlElement("content_id")]
public string ContentId { get; set; }
/// <summary>
/// 店面DM营销数据包括商品的PV、UV、曝光。
/// </summary>
[XmlArray("dm_marketing_datas")]
[XmlArrayItem("dm_activity_shop_data")]
public List<DmActivityShopData> DmMarketingDatas { get; set; }
/// <summary>
/// 商品码
/// </summary>
[XmlElement("item_code")]
public string ItemCode { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[XmlElement("item_name")]
public string ItemName { get; set; }
}
}