
com.alipay.api.domain.AlipayMarketingCampaignDrawcampWhitelistCreateModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 营销抽奖活动白名单创建
*
* @author auto create
* @since 1.0, 2017-03-23 14:21:46
*/
public class AlipayMarketingCampaignDrawcampWhitelistCreateModel extends AlipayObject {
private static final long serialVersionUID = 4872519869362336637L;
/**
* 活动id
*/
@ApiField("camp_id")
private String campId;
/**
* 用户信息列表,有多个时用逗号隔开,最大支持100个白名单账户,账户必须是非脱敏的登录账号或者2088开头的userid,以覆盖的形式执行。为空(“”)时,则清空白名单,不进行白名单校验。
*/
@ApiField("user_id_list")
private String userIdList;
public String getCampId() {
return this.campId;
}
public void setCampId(String campId) {
this.campId = campId;
}
public String getUserIdList() {
return this.userIdList;
}
public void setUserIdList(String userIdList) {
this.userIdList = userIdList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy