com.microsoft.bingads.v13.campaignmanagement.ReviewAdExtension Maven / Gradle / Ivy
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 ReviewAdExtension complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReviewAdExtension", propOrder = {
"isExact",
"source",
"text",
"url"
})
public class ReviewAdExtension
extends AdExtension
{
public ReviewAdExtension() {
this.type = "ReviewAdExtension";
}
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy