
com.alipay.api.domain.KoubeiAdvertCommissionChannelModifyModel 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:56
*/
public class KoubeiAdvertCommissionChannelModifyModel extends AlipayObject {
private static final long serialVersionUID = 3127873397248924262L;
/**
* 修改渠道信息(新增、删除、修改渠道不可同时为空)
*/
@ApiListField("channels")
@ApiField("kb_advert_modify_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