com.microsoft.bingads.v13.adinsight.BroadMatchSearchQueryKPI 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 BroadMatchSearchQueryKPI complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy