using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayCommerceIotAdvertiserAdCreateModel Data Structure. /// [Serializable] public class AlipayCommerceIotAdvertiserAdCreateModel : AopObject { /// /// 定向的设备sn列表 /// [XmlArray("device_sn_list")] [XmlArrayItem("string")] public List DeviceSnList { get; set; } /// /// 设备类型,qt:蜻蜓 /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 投放结束时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 广告位值,静默页:idle /// [XmlElement("event")] public string Event { get; set; } /// /// 物料id /// [XmlElement("material_id")] public long MaterialId { get; set; } /// /// 投放计划名称 /// [XmlElement("plan_name")] public string PlanName { get; set; } /// /// 投放开始时间 /// [XmlElement("start_time")] public string StartTime { get; set; } } }