com.alipay.api.domain.AlipayMarketingCampaignDiscountWhitelistUpdateModel 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
alipay-sdk project for Spring Project
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-03 16:47:53
*/
public class AlipayMarketingCampaignDiscountWhitelistUpdateModel extends AlipayObject {
private static final long serialVersionUID = 2632652531818193179L;
/**
* 活动id
*/
@ApiField("camp_id")
private String campId;
/**
* 白名单。逗号分隔开
*/
@ApiField("user_white_list")
private String userWhiteList;
public String getCampId() {
return this.campId;
}
public void setCampId(String campId) {
this.campId = campId;
}
public String getUserWhiteList() {
return this.userWhiteList;
}
public void setUserWhiteList(String userWhiteList) {
this.userWhiteList = userWhiteList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy