
com.alipay.api.domain.KoubeiAdvertCommissionChannelDeleteModel 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-03-03 10:41:04
*/
public class KoubeiAdvertCommissionChannelDeleteModel extends AlipayObject {
private static final long serialVersionUID = 7482325617496257321L;
/**
* 需要删除的渠道ID列表
*/
@ApiListField("channel_ids")
@ApiField("string")
private List channelIds;
public List getChannelIds() {
return this.channelIds;
}
public void setChannelIds(List channelIds) {
this.channelIds = channelIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy