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

com.microsoft.bingads.v13.campaignmanagement.EditorialError 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.campaignmanagement;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for EditorialError complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EditorialError", propOrder = { "appealable", "disapprovedText", "location", "publisherCountry", "reasonCode" }) public class EditorialError extends BatchError { @XmlElement(name = "Appealable", nillable = true) protected Boolean appealable; @XmlElement(name = "DisapprovedText", nillable = true) protected String disapprovedText; @XmlElement(name = "Location", nillable = true) protected String location; @XmlElement(name = "PublisherCountry", nillable = true) protected String publisherCountry; @XmlElement(name = "ReasonCode") protected Integer reasonCode; /** * Gets the value of the appealable property. * * @return * possible object is * {@link Boolean } * */ public Boolean getAppealable() { return appealable; } /** * Sets the value of the appealable property. * * @param value * allowed object is * {@link Boolean } * */ public void setAppealable(Boolean value) { this.appealable = value; } /** * Gets the value of the disapprovedText property. * * @return * possible object is * {@link String } * */ public String getDisapprovedText() { return disapprovedText; } /** * Sets the value of the disapprovedText property. * * @param value * allowed object is * {@link String } * */ public void setDisapprovedText(String value) { this.disapprovedText = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Gets the value of the publisherCountry property. * * @return * possible object is * {@link String } * */ public String getPublisherCountry() { return publisherCountry; } /** * Sets the value of the publisherCountry property. * * @param value * allowed object is * {@link String } * */ public void setPublisherCountry(String value) { this.publisherCountry = value; } /** * Gets the value of the reasonCode property. * * @return * possible object is * {@link Integer } * */ public Integer getReasonCode() { return reasonCode; } /** * Sets the value of the reasonCode property. * * @param value * allowed object is * {@link Integer } * */ public void setReasonCode(Integer value) { this.reasonCode = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy