NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceAdOffl...

33 lines
965 B
C#
Raw Permalink 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>
/// AlipayDataDataserviceAdOfflineModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceAdOfflineModel : AopObject
{
/// <summary>
/// 灯火平台提供给外部系统的访问token
/// </summary>
[XmlElement("biz_token")]
public string BizToken { get; set; }
/// <summary>
/// 操作的广告层级类型,如计划(plan),单元(group),创意 creative
/// </summary>
[XmlElement("op_type")]
public string OpType { get; set; }
/// <summary>
/// 外部平台导入广告库后广告投放层级的对应的外部资源ID
/// </summary>
[XmlArray("outer_id_list")]
[XmlArrayItem("string")]
public List<string> OuterIdList { get; set; }
}
}