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