package com.microsoft.bingads.v10.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; /** * <p>Java class for ReviewAdExtension complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ReviewAdExtension"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v10}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> * </pre> * * */ @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; } }