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

61 lines
1.8 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiAdvertDeliveryDiscountGetModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertDeliveryDiscountGetModel : AopObject
{
/// <summary>
/// 媒体编号,使用前需要找业务申请 ,不申请直接调用会失败
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 城市编码国标码比如310100是上海
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 纬度,以高德地图为准, 小数点后保留六位
/// </summary>
[XmlElement("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度,以高德地图为准, 小数点后保留六位
/// </summary>
[XmlElement("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 被推荐用户的手机号码不能与user_id同时存在
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 支付宝口碑门店ID 如果提供门店ID则优先查询门店下发的券。
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 获取推荐广告列表个数值小于等于100个
/// </summary>
[XmlElement("size")]
public string Size { get; set; }
/// <summary>
/// 蚂蚁统一会员ID以2088开头的16位数字
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}