com.microsoft.bingads.v13.bulk.GetBulkUploadStatusResponse Maven / Gradle / Ivy
package com.microsoft.bingads.v13.bulk;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy