
com.google.api.ads.dfp.jaxws.v201508.RequiredCollectionError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
DFP specific AppEngine components.
package com.google.api.ads.dfp.jaxws.v201508;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
*
* A list of all errors to be used for validating sizes of collections.
*
*
* Java class for RequiredCollectionError complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequiredCollectionError">
* <complexContent>
* <extension base="{https://www.google.com/apis/ads/publisher/v201508}ApiError">
* <sequence>
* <element name="reason" type="{https://www.google.com/apis/ads/publisher/v201508}RequiredCollectionError.Reason" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequiredCollectionError", propOrder = {
"reason"
})
public class RequiredCollectionError
extends ApiError
{
@XmlSchemaType(name = "string")
protected RequiredCollectionErrorReason reason;
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link RequiredCollectionErrorReason }
*
*/
public RequiredCollectionErrorReason getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link RequiredCollectionErrorReason }
*
*/
public void setReason(RequiredCollectionErrorReason value) {
this.reason = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy