Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertDeliveryDiscountBatchqueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

73 lines
2.1 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>
/// KoubeiAdvertDeliveryDiscountBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertDeliveryDiscountBatchqueryModel : AopObject
{
/// <summary>
/// 媒体编号,使用前需要找业务申请 ,不申请直接调用会失败
/// </summary>
[JsonProperty("channel")]
public string Channel { get; set; }
/// <summary>
/// 城市国标码比如310100是上海
/// </summary>
[JsonProperty("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 纬度
/// </summary>
[JsonProperty("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度
/// </summary>
[JsonProperty("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 手机号码不能和user_id同时存在
/// </summary>
[JsonProperty("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 当strategy为QUERY_AND_PURCHASE时循环发送券列表中的券直到发券量达到purchase_num。
/// </summary>
[JsonProperty("purchase_num")]
public string PurchaseNum { get; set; }
/// <summary>
/// 门店ID 如果提供门店ID则优先查询门店下发的券。
/// </summary>
[JsonProperty("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 输出的券列表大小
/// </summary>
[JsonProperty("size")]
public string Size { get; set; }
/// <summary>
/// 查询策略查询并发送策略只有白名单内ISV才有权限使用如果不在白名单内则忽略该字段并默认查询 QUERY查券默认值
/// QUERY_AND_PURCHASE查并领为了优化体验在查询时进行发券处理顺序发送券列表的券直达发券量达到purchase_num。
/// </summary>
[JsonProperty("strategy")]
public string Strategy { get; set; }
/// <summary>
/// 支付宝账户ID
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}