using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayDataDataserviceAdOnlineModel Data Structure. /// [Serializable] public class AlipayDataDataserviceAdOnlineModel : AopObject { /// /// 灯火平台提供给外部系统的访问token /// [XmlElement("biz_token")] public string BizToken { get; set; } /// /// 操作的广告层级类型,如计划(plan),单元(group),创意 (creative) /// [XmlElement("op_type")] public string OpType { get; set; } /// /// 外部平台导入广告库后,广告投放层级的对应的外部资源ID /// [XmlArray("outer_id_list")] [XmlArrayItem("string")] public List OuterIdList { get; set; } } }