NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCdpRecommend...

31 lines
815 B
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>
/// AlipayMarketingCdpRecommendQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCdpRecommendQueryModel : AopObject
{
/// <summary>
/// 广告标识码
/// </summary>
[XmlElement("ad_code")]
public string AdCode { get; set; }
/// <summary>
/// 扩展信息传json格式的字符串包含longitude=经度latitude=纬度deviceId=设备标识
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 支付宝账户
/// </summary>
[XmlElement("logon_id")]
public string LogonId { get; set; }
}
}