using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PromoteDetailModel Data Structure.
///
[Serializable]
public class PromoteDetailModel : AopObject
{
///
/// 广告id
///
[JsonProperty("adv_id")]
public string AdvId { get; set; }
///
/// 标的业务id
///
[JsonProperty("biz_id")]
public string BizId { get; set; }
///
/// 业务类型(目前只支持ITEM)
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 推广标的商品信息
///
[JsonProperty("item_info")]
public PromoteItemModel ItemInfo { get; set; }
///
/// 推广数据
///
[JsonProperty("promote_data")]
public PromoteDataModel PromoteData { get; set; }
}
}