NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCampaignDraw...

43 lines
1.3 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>
/// AlipayMarketingCampaignDrawcampConsultModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCampaignDrawcampConsultModel : AopObject
{
/// <summary>
/// 营销海豚活动id
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 扩展字段Map格式为{"key","value"}其中key需要与支付宝营销平台约定
/// </summary>
[XmlElement("ext_params")]
public ConsultExtParams ExtParams { get; set; }
/// <summary>
/// 指定过滤奖品id列表最多支持10个多个奖品用英文逗号分割为空时咨询活动下所有的奖品
/// </summary>
[XmlElement("prize_id_list")]
public string PrizeIdList { get; set; }
/// <summary>
/// 系统来源接入请和支付宝营销平台开发or产品同学申请
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}