NewGaoKaoApi/PaymentSDK/AliPay/Domain/OuterTargetingItem.cs

27 lines
745 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>
/// OuterTargetingItem Data Structure.
/// </summary>
[Serializable]
public class OuterTargetingItem : AopObject
{
/// <summary>
/// 定向类型: REGION_LIST: 实时地址 AD_POS_LIST: 广告位定向 OUTER_KOUBEI_INTEREST_TAG_LIST: 口碑偏好 OUTER_KOUBEI_CROWD_TAG_LIST口碑人群
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 定向值
/// </summary>
[XmlArray("value_list")]
[XmlArrayItem("string")]
public List<string> ValueList { get; set; }
}
}