eleme.openapi.sdk.api.entity.ad.AdGroupResult Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.ad;
public class AdGroupResult{
/**
* 出价
*/
private String bidPrice;
public String getBidPrice() {
return bidPrice;
}
public void setBidPrice(String bidPrice) {
this.bidPrice = bidPrice;
}
/**
* 出价模式
*/
private Integer bidType;
public Integer getBidType() {
return bidType;
}
public void setBidType(Integer bidType) {
this.bidType = bidType;
}
/**
* 区间出价上限
*/
private String maxBid;
public String getMaxBid() {
return maxBid;
}
public void setMaxBid(String maxBid) {
this.maxBid = maxBid;
}
/**
* 区间出价下限
*/
private String minBid;
public String getMinBid() {
return minBid;
}
public void setMinBid(String minBid) {
this.minBid = minBid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy