All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v13.bulk.GetBulkUploadStatusResponse Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.22.1
Show newest version

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 - 2024 Weber Informatics LLC | Privacy Policy