
com.microsoft.bingads.v13.bulk.AdApiFaultDetail Maven / Gradle / Ivy
package com.microsoft.bingads.v13.bulk;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AdApiFaultDetail complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AdApiFaultDetail">
* <complexContent>
* <extension base="{https://adapi.microsoft.com}ApplicationFault">
* <sequence>
* <element name="Errors" type="{https://adapi.microsoft.com}ArrayOfAdApiError" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdApiFaultDetail", namespace = "https://adapi.microsoft.com", propOrder = {
"errors"
})
public class AdApiFaultDetail
extends ApplicationFault
{
@XmlElement(name = "Errors", nillable = true)
protected ArrayOfAdApiError errors;
/**
* Gets the value of the errors property.
*
* @return
* possible object is
* {@link ArrayOfAdApiError }
*
*/
public ArrayOfAdApiError getErrors() {
return errors;
}
/**
* Sets the value of the errors property.
*
* @param value
* allowed object is
* {@link ArrayOfAdApiError }
*
*/
public void setErrors(ArrayOfAdApiError value) {
this.errors = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy