
com.alipay.api.domain.AlipayMarketingCdpAdvertiseOperateModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 提供给ISV、开发者操作广告的接口
*
* @author auto create
* @since 1.0, 2017-08-18 15:35:55
*/
public class AlipayMarketingCdpAdvertiseOperateModel extends AlipayObject {
private static final long serialVersionUID = 6692882996134454348L;
/**
* 广告ID,唯一标识一条广告
*/
@ApiField("ad_id")
private String adId;
/**
* 操作类型,目前包括上线和下线,分别传入:online(ONLINE)和offline(OFFLINE)
*/
@ApiField("operate_type")
private String operateType;
public String getAdId() {
return this.adId;
}
public void setAdId(String adId) {
this.adId = adId;
}
public String getOperateType() {
return this.operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy