com.microsoft.bingads.v13.campaignmanagement.ReviewAdExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
package com.microsoft.bingads.v13.campaignmanagement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ReviewAdExtension complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReviewAdExtension">
* <complexContent>
* <extension base="{https://bingads.microsoft.com/CampaignManagement/v13}AdExtension">
* <sequence>
* <element name="IsExact" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReviewAdExtension", propOrder = {
"isExact",
"source",
"text",
"url"
})
public class ReviewAdExtension
extends AdExtension
{
@XmlElement(name = "IsExact")
protected Boolean isExact;
@XmlElement(name = "Source", nillable = true)
protected String source;
@XmlElement(name = "Text", nillable = true)
protected String text;
@XmlElement(name = "Url", nillable = true)
protected String url;
/**
* Gets the value of the isExact property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getIsExact() {
return isExact;
}
/**
* Sets the value of the isExact property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsExact(Boolean value) {
this.isExact = value;
}
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSource(String value) {
this.source = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
}