com.microsoft.bingads.v13.adinsight.HistoricalSearchCountPeriodic 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 HistoricalSearchCountPeriodic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HistoricalSearchCountPeriodic", propOrder = {
"searchCount",
"dayMonthAndYear"
})
public class HistoricalSearchCountPeriodic {
@XmlElement(name = "SearchCount")
protected Long searchCount;
@XmlElement(name = "DayMonthAndYear", nillable = true)
protected DayMonthAndYear dayMonthAndYear;
/**
* Gets the value of the searchCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSearchCount() {
return searchCount;
}
/**
* Sets the value of the searchCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSearchCount(Long value) {
this.searchCount = value;
}
/**
* Gets the value of the dayMonthAndYear property.
*
* @return
* possible object is
* {@link DayMonthAndYear }
*
*/
public DayMonthAndYear getDayMonthAndYear() {
return dayMonthAndYear;
}
/**
* Sets the value of the dayMonthAndYear property.
*
* @param value
* allowed object is
* {@link DayMonthAndYear }
*
*/
public void setDayMonthAndYear(DayMonthAndYear value) {
this.dayMonthAndYear = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy