com.microsoft.bingads.v13.adinsight.BroadMatchSearchQueryKPI 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 BroadMatchSearchQueryKPI complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BroadMatchSearchQueryKPI">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AverageCTR" 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="Impressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="SRPV" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="SearchQuery" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BroadMatchSearchQueryKPI", propOrder = {
"averageCTR",
"clicks",
"impressions",
"srpv",
"searchQuery"
})
public class BroadMatchSearchQueryKPI {
@XmlElement(name = "AverageCTR")
protected Double averageCTR;
@XmlElement(name = "Clicks")
protected Double clicks;
@XmlElement(name = "Impressions")
protected Long impressions;
@XmlElement(name = "SRPV")
protected Long srpv;
@XmlElement(name = "SearchQuery", nillable = true)
protected String searchQuery;
/**
* Gets the value of the averageCTR property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAverageCTR() {
return averageCTR;
}
/**
* Sets the value of the averageCTR property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAverageCTR(Double value) {
this.averageCTR = 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 impressions property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getImpressions() {
return impressions;
}
/**
* Sets the value of the impressions property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setImpressions(Long value) {
this.impressions = value;
}
/**
* Gets the value of the srpv property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSRPV() {
return srpv;
}
/**
* Sets the value of the srpv property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSRPV(Long value) {
this.srpv = value;
}
/**
* Gets the value of the searchQuery property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSearchQuery() {
return searchQuery;
}
/**
* Sets the value of the searchQuery property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSearchQuery(String value) {
this.searchQuery = value;
}
}