All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v13.campaignmanagement.DeviceCondition Maven / Gradle / Ivy


package com.microsoft.bingads.v13.campaignmanagement;

import java.util.Collection;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for DeviceCondition complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceCondition", propOrder = { "deviceTypes", "isPrimary" }) public class DeviceCondition { @XmlElement(name = "DeviceTypes", type = String.class) @XmlJavaTypeAdapter(Adapter25 .class) protected Collection deviceTypes; @XmlElement(name = "IsPrimary") protected Boolean isPrimary; /** * Gets the value of the deviceTypes property. * * @return * possible object is * {@link String } * */ public Collection getDeviceTypes() { return deviceTypes; } /** * Sets the value of the deviceTypes property. * * @param value * allowed object is * {@link String } * */ public void setDeviceTypes(Collection value) { this.deviceTypes = value; } /** * Gets the value of the isPrimary property. * * @return * possible object is * {@link Boolean } * */ public Boolean getIsPrimary() { return isPrimary; } /** * Sets the value of the isPrimary property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsPrimary(Boolean value) { this.isPrimary = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy