package com.microsoft.bingads.customermanagement; 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 ApiFault complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ApiFault"> * <complexContent> * <extension base="{https://adapi.microsoft.com}ApplicationFault"> * <sequence> * <element name="OperationErrors" type="{https://bingads.microsoft.com/Customer/v9/Exception}ArrayOfOperationError" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ApiFault", namespace = "https://bingads.microsoft.com/Customer/v9/Exception", propOrder = { "operationErrors" }) public class ApiFault extends ApplicationFault { @XmlElement(name = "OperationErrors", nillable = true) protected ArrayOfOperationError operationErrors; /** * Gets the value of the operationErrors property. * * @return * possible object is * {@link ArrayOfOperationError } * */ public ArrayOfOperationError getOperationErrors() { return operationErrors; } /** * Sets the value of the operationErrors property. * * @param value * allowed object is * {@link ArrayOfOperationError } * */ public void setOperationErrors(ArrayOfOperationError value) { this.operationErrors = value; } }