package com.microsoft.bingads.v10.bulk; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Errors" type="{https://bingads.microsoft.com/CampaignManagement/v10}ArrayOfOperationError" minOccurs="0"/> * <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/> * <element name="PercentComplete" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="RequestStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ResultFileUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "errors", "forwardCompatibilityMap", "percentComplete", "requestStatus", "resultFileUrl" }) @XmlRootElement(name = "GetBulkUploadStatusResponse") public class GetBulkUploadStatusResponse { @XmlElement(name = "Errors", nillable = true) protected ArrayOfOperationError errors; @XmlElement(name = "ForwardCompatibilityMap", nillable = true) protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; @XmlElement(name = "PercentComplete") protected Integer percentComplete; @XmlElement(name = "RequestStatus", nillable = true) protected String requestStatus; @XmlElement(name = "ResultFileUrl", nillable = true) protected String resultFileUrl; /** * Gets the value of the errors property. * * @return * possible object is * {@link ArrayOfOperationError } * */ public ArrayOfOperationError getErrors() { return errors; } /** * Sets the value of the errors property. * * @param value * allowed object is * {@link ArrayOfOperationError } * */ public void setErrors(ArrayOfOperationError value) { this.errors = value; } /** * Gets the value of the forwardCompatibilityMap property. * * @return * possible object is * {@link ArrayOfKeyValuePairOfstringstring } * */ public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { return forwardCompatibilityMap; } /** * Sets the value of the forwardCompatibilityMap property. * * @param value * allowed object is * {@link ArrayOfKeyValuePairOfstringstring } * */ public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { this.forwardCompatibilityMap = value; } /** * Gets the value of the percentComplete property. * * @return * possible object is * {@link Integer } * */ public Integer getPercentComplete() { return percentComplete; } /** * Sets the value of the percentComplete property. * * @param value * allowed object is * {@link Integer } * */ public void setPercentComplete(Integer value) { this.percentComplete = value; } /** * Gets the value of the requestStatus property. * * @return * possible object is * {@link String } * */ public String getRequestStatus() { return requestStatus; } /** * Sets the value of the requestStatus property. * * @param value * allowed object is * {@link String } * */ public void setRequestStatus(String value) { this.requestStatus = value; } /** * Gets the value of the resultFileUrl property. * * @return * possible object is * {@link String } * */ public String getResultFileUrl() { return resultFileUrl; } /** * Sets the value of the resultFileUrl property. * * @param value * allowed object is * {@link String } * */ public void setResultFileUrl(String value) { this.resultFileUrl = value; } }