com.alipay.api.response.AlipayMarketingCampaignDiscountWhitelistQueryResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.campaign.discount.whitelist.query response.
*
* @author auto create
* @since 1.0, 2017-03-03 16:48:04
*/
public class AlipayMarketingCampaignDiscountWhitelistQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2733636878227388171L;
/**
* 活动id
*/
@ApiField("camp_id")
private String campId;
/**
* 活动id.白名单,","隔开,最多100个
*/
@ApiField("user_white_list")
private String userWhiteList;
public void setCampId(String campId) {
this.campId = campId;
}
public String getCampId( ) {
return this.campId;
}
public void setUserWhiteList(String userWhiteList) {
this.userWhiteList = userWhiteList;
}
public String getUserWhiteList( ) {
return this.userWhiteList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy