NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceAdGrou...

100 lines
3.5 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>
/// AlipayDataDataserviceAdGroupCreateormodifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceAdGroupCreateormodifyModel : AopObject
{
/// <summary>
/// 灯火平台提供给外部系统的访问token
/// </summary>
[XmlElement("biz_token")]
public string BizToken { get; set; }
/// <summary>
/// 转化事件编号。若此字段不为空则要求conversion_type也不为空且此转化事件与转化事件类型conversion_type匹配
/// </summary>
[XmlElement("conversion_id")]
public string ConversionId { get; set; }
/// <summary>
/// 转化事件类型: CPA_TAO_XI淘系店铺关注 CPA_TMALL_MEMBER_JOIN淘系店铺入会
/// </summary>
[XmlElement("conversion_type")]
public string ConversionType { get; set; }
/// <summary>
/// 业务扩展参数字段,根据第三方需要使用,投放端只做存储并向检索端透传
/// </summary>
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
/// <summary>
/// 单元出价,单位:分
/// </summary>
[XmlElement("group_charge")]
public long GroupCharge { get; set; }
/// <summary>
/// 单元名称
/// </summary>
[XmlElement("group_name")]
public string GroupName { get; set; }
/// <summary>
/// 外部唯一单元编号
/// </summary>
[XmlElement("group_outer_id")]
public string GroupOuterId { get; set; }
/// <summary>
/// 单元状态ENABLE-生效DISABLE-暂停。 若此入参字段为空:新建单元时此字段默认有效;修改单元此字段默认为单元当前状态。
/// </summary>
[XmlElement("group_status")]
public string GroupStatus { get; set; }
/// <summary>
/// 商品id列表
/// </summary>
[XmlArray("item_id_list")]
[XmlArrayItem("string")]
public List<string> ItemIdList { get; set; }
/// <summary>
/// 外部唯一计划编号
/// </summary>
[XmlElement("plan_outer_id")]
public string PlanOuterId { get; set; }
/// <summary>
/// 定向扩展信息
/// </summary>
[XmlElement("targeting_extend_info")]
public string TargetingExtendInfo { get; set; }
/// <summary>
/// 单元定向列表。目前支持的定向类型有: REGION_LIST: 实时地址 AD_POS_LIST: 广告位定向 OUTER_KOUBEI_INTEREST_TAG_LIST: 口碑偏好 OUTER_KOUBEI_CROWD_TAG_LIST口碑人群
/// </summary>
[XmlArray("targeting_list")]
[XmlArrayItem("outer_targeting_item")]
public List<OuterTargetingItem> TargetingList { get; set; }
/// <summary>
/// 投放区间内的投放时段
/// </summary>
[XmlElement("time_option")]
public string TimeOption { get; set; }
/// <summary>
/// 投放时段配置bitmap。规则7个int用「,」分隔组成的字符串每个int中第0位表示0点第1位表示1点。如此类推; 7个int的排序是星期日、星期一、星期二、星期三、星期四、星期五、星期六
/// </summary>
[XmlElement("time_schema")]
public string TimeSchema { get; set; }
}
}