
com.alipay.api.domain.KoubeiAdvertCommissionChannelCreateModel 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:40:48
*/
public class KoubeiAdvertCommissionChannelCreateModel extends AlipayObject {
private static final long serialVersionUID = 4631975326535733513L;
/**
* 新增渠道列表
*/
@ApiListField("channels")
@ApiField("kb_advert_add_channel_request")
private List channels;
public List getChannels() {
return this.channels;
}
public void setChannels(List channels) {
this.channels = channels;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy