NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiAdvertDeliveryDiscoun...

55 lines
2.0 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiAdvertDeliveryDiscountSendModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertDeliveryDiscountSendModel : AopObject
{
/// <summary>
/// 外投ID通过adv_id的前缀区分业务标识 I或者无前缀adv_id表示券ID Aadv_id为广告平台的广告ID C为营销活动ID 外投ID可以通过“口碑广告投放优惠输出接口”获取
/// </summary>
[XmlElement("adv_id")]
public string AdvId { get; set; }
/// <summary>
/// 渠道编号适用于外投发券channel_code/channel_id必须保证至少有一个不为空
/// </summary>
[XmlElement("channel_code")]
public string ChannelCode { get; set; }
/// <summary>
/// 适用于在推广者主站上注册的渠道编号channel_code/channel_id必须保证至少有一个不为空
/// </summary>
[XmlElement("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 外部流水号,用于区别每次请求的流水号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 券推荐ID从”口碑广告投放优惠输出接口“返回参数中获取需要在领券的时候传回来用来进行后续效果优化
/// </summary>
[XmlElement("recommend_id")]
public string RecommendId { get; set; }
/// <summary>
/// 领取优惠的门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 推广参与打标(无实际业务作用后期可供ISV分析不同渠道的推广效能)
/// </summary>
[XmlElement("tag")]
public string Tag { get; set; }
}
}