using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipaySocialBaseContentlibOfferSyncModel Data Structure.
///
[Serializable]
public class AlipaySocialBaseContentlibOfferSyncModel : AopObject
{
///
/// 参数名代表同步到我方的业务方来源值,在内容中台中是唯一标示,对接内容中台的时候,由中台PD告知对方
///
[XmlElement("channel_id")]
public string ChannelId { get; set; }
///
/// 内容中台offer同步,具体的数据内容,是个列表,支持批量修改传递
///
[XmlElement("display_app")]
public OfferObject DisplayApp { get; set; }
///
/// 标示本次操作具体的行为
///
[XmlElement("operate_type")]
public string OperateType { get; set; }
}
}