com.microsoft.bingads.v13.adinsight.TrafficEstimate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.v13.adinsight;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TrafficEstimate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TrafficEstimate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AverageCpc" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="AveragePosition" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Clicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Ctr" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Impressions" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="TotalCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@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;
}
}