All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.ad.DouJinEffectiveResult Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.ad;


import java.util.List;

public class DouJinEffectiveResult{

    /**
     * 曝光
     */
    private Long impression;
    public Long getImpression() {
        return impression;
    }
    public void setImpression(Long impression) {
        this.impression = impression;
    }
    
    /**
     * 消耗
     */
    private String cost;
    public String getCost() {
        return cost;
    }
    public void setCost(String cost) {
        this.cost = cost;
    }
    
    /**
     * 点击
     */
    private Long click;
    public Long getClick() {
        return click;
    }
    public void setClick(Long click) {
        this.click = click;
    }
    
    /**
     * 点击成本
     */
    private String ppc;
    public String getPpc() {
        return ppc;
    }
    public void setPpc(String ppc) {
        this.ppc = ppc;
    }
    
    /**
     * 详情
     */
    private List list;
    public List getList() {
        return list;
    }
    public void setList(List list) {
        this.list = list;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy