Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertDeliveryItemApplyModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

54 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiAdvertDeliveryItemApplyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertDeliveryItemApplyModel : AopObject
{
/// <summary>
/// 领券时触发的id在外投场景下用的是广告id
/// </summary>
[JsonProperty("adv_id")]
public string AdvId { get; set; }
/// <summary>
/// 渠道编号,适用于媒体类发券
/// </summary>
[JsonProperty("channel_code")]
public string ChannelCode { get; set; }
/// <summary>
/// 适用于在推广者主站上注册的渠道编号
/// </summary>
[JsonProperty("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 外部流水号,用于区别每次请求的流水号
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 券推荐时输出给合作伙伴的id需要在领券的时候传回来
/// </summary>
[JsonProperty("recommend_id")]
public string RecommendId { get; set; }
/// <summary>
/// 领取优惠的门店id
/// </summary>
[JsonProperty("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 推广参与打标(无实际业务作用后期可供ISV分析不同渠道的推广效能)
/// </summary>
[JsonProperty("tag")]
public string Tag { get; set; }
}
}