package com.microsoft.bingads.v11.campaignmanagement; 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 DeviceCriterion complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DeviceCriterion"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v11}Criterion"> * <sequence> * <element name="DeviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="OSName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceCriterion", propOrder = { "deviceName", "osName" }) public class DeviceCriterion extends Criterion { @XmlElement(name = "DeviceName", nillable = true) protected String deviceName; @XmlElement(name = "OSName", nillable = true) protected String osName; /** * Gets the value of the deviceName property. * * @return * possible object is * {@link String } * */ public String getDeviceName() { return deviceName; } /** * Sets the value of the deviceName property. * * @param value * allowed object is * {@link String } * */ public void setDeviceName(String value) { this.deviceName = value; } /** * Gets the value of the osName property. * * @return * possible object is * {@link String } * */ public String getOSName() { return osName; } /** * Sets the value of the osName property. * * @param value * allowed object is * {@link String } * */ public void setOSName(String value) { this.osName = value; } }