
com.alipay.api.domain.KoubeiAdvertCommissionAdvchannelUnbindModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 创建广告推广内容
*
* @author auto create
* @since 1.0, 2017-01-17 10:33:35
*/
public class KoubeiAdvertCommissionAdvchannelUnbindModel extends AlipayObject {
private static final long serialVersionUID = 2445134229727638242L;
/**
* 广告ID
*/
@ApiField("adv_id")
private String advId;
/**
* 渠道ID列表
*/
@ApiListField("channel_id_list")
@ApiField("string")
private List channelIdList;
public String getAdvId() {
return this.advId;
}
public void setAdvId(String advId) {
this.advId = advId;
}
public List getChannelIdList() {
return this.channelIdList;
}
public void setChannelIdList(List channelIdList) {
this.channelIdList = channelIdList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy