
com.google.api.ads.dfp.jaxws.v201605.SuggestedAdUnitUpdateResult Maven / Gradle / Ivy
Show all versions of dfp-appengine Show documentation
package com.google.api.ads.dfp.jaxws.v201605;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
*
* Represents the result of performing an action on {@link SuggestedAdUnit} objects.
*
*
* Java class for SuggestedAdUnitUpdateResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SuggestedAdUnitUpdateResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="newAdUnitIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="numChanges" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SuggestedAdUnitUpdateResult", propOrder = {
"newAdUnitIds",
"numChanges"
})
public class SuggestedAdUnitUpdateResult {
protected List newAdUnitIds;
protected Integer numChanges;
/**
* Gets the value of the newAdUnitIds property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the newAdUnitIds property.
*
*
* For example, to add a new item, do as follows:
*
* getNewAdUnitIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getNewAdUnitIds() {
if (newAdUnitIds == null) {
newAdUnitIds = new ArrayList();
}
return this.newAdUnitIds;
}
/**
* Gets the value of the numChanges property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumChanges() {
return numChanges;
}
/**
* Sets the value of the numChanges property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumChanges(Integer value) {
this.numChanges = value;
}
}