package com.microsoft.bingads.v11.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; /** * <p>Java class for SearchCountsByAttributes complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SearchCountsByAttributes"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="HistoricalSearchCounts" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V11.Entity}ArrayOfHistoricalSearchCountPeriodic" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchCountsByAttributes", propOrder = { "device", "historicalSearchCounts" }) public class SearchCountsByAttributes { @XmlElement(name = "Device", nillable = true) protected String device; @XmlElement(name = "HistoricalSearchCounts", nillable = true) protected ArrayOfHistoricalSearchCountPeriodic historicalSearchCounts; /** * Gets the value of the device property. * * @return * possible object is * {@link String } * */ public String getDevice() { return device; } /** * Sets the value of the device property. * * @param value * allowed object is * {@link String } * */ public void setDevice(String value) { this.device = value; } /** * Gets the value of the historicalSearchCounts property. * * @return * possible object is * {@link ArrayOfHistoricalSearchCountPeriodic } * */ public ArrayOfHistoricalSearchCountPeriodic getHistoricalSearchCounts() { return historicalSearchCounts; } /** * Sets the value of the historicalSearchCounts property. * * @param value * allowed object is * {@link ArrayOfHistoricalSearchCountPeriodic } * */ public void setHistoricalSearchCounts(ArrayOfHistoricalSearchCountPeriodic value) { this.historicalSearchCounts = value; } }