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

25 lines
838 B
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>
/// AlipayMarketingCampaignDrawcampWhitelistCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCampaignDrawcampWhitelistCreateModel : AopObject
{
/// <summary>
/// 活动id
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 用户信息列表有多个时用逗号隔开最大支持100个白名单账户账户必须是非脱敏的登录账号或者2088开头的userid以覆盖的形式执行。为空“”则清空白名单不进行白名单校验。
/// </summary>
[XmlElement("user_id_list")]
public string UserIdList { get; set; }
}
}