NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceIotAdvertiser...

57 lines
1.4 KiB
C#
Raw Blame History

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