com.microsoft.bingads.v13.adinsight.TrafficEstimate Maven / Gradle / Ivy
package com.microsoft.bingads.v13.adinsight;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for TrafficEstimate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TrafficEstimate", propOrder = {
"averageCpc",
"averagePosition",
"clicks",
"ctr",
"impressions",
"totalCost"
})
public class TrafficEstimate {
@XmlElement(name = "AverageCpc")
protected Double averageCpc;
@XmlElement(name = "AveragePosition")
protected Double averagePosition;
@XmlElement(name = "Clicks")
protected Double clicks;
@XmlElement(name = "Ctr")
protected Double ctr;
@XmlElement(name = "Impressions")
protected Double impressions;
@XmlElement(name = "TotalCost")
protected Double totalCost;
/**
* Gets the value of the averageCpc property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAverageCpc() {
return averageCpc;
}
/**
* Sets the value of the averageCpc property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAverageCpc(Double value) {
this.averageCpc = value;
}
/**
* Gets the value of the averagePosition property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAveragePosition() {
return averagePosition;
}
/**
* Sets the value of the averagePosition property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAveragePosition(Double value) {
this.averagePosition = value;
}
/**
* Gets the value of the clicks property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getClicks() {
return clicks;
}
/**
* Sets the value of the clicks property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setClicks(Double value) {
this.clicks = value;
}
/**
* Gets the value of the ctr property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getCtr() {
return ctr;
}
/**
* Sets the value of the ctr property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setCtr(Double value) {
this.ctr = value;
}
/**
* Gets the value of the impressions property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getImpressions() {
return impressions;
}
/**
* Sets the value of the impressions property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setImpressions(Double value) {
this.impressions = value;
}
/**
* Gets the value of the totalCost property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getTotalCost() {
return totalCost;
}
/**
* Sets the value of the totalCost property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setTotalCost(Double value) {
this.totalCost = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy