com.microsoft.bingads.v13.campaignmanagement.DisclaimerAdExtension 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 DisclaimerAdExtension complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DisclaimerAdExtension", propOrder = {
"disclaimerLayout",
"finalAppUrls",
"finalMobileUrls",
"finalUrlSuffix",
"finalUrls",
"lineText",
"name",
"popupText",
"title",
"trackingUrlTemplate",
"urlCustomParameters"
})
public class DisclaimerAdExtension
extends AdExtension
{
public DisclaimerAdExtension() {
this.type = "DisclaimerAdExtension";
}
@XmlElement(name = "DisclaimerLayout", required = true, nillable = true)
protected String disclaimerLayout;
@XmlElement(name = "FinalAppUrls", nillable = true)
protected ArrayOfAppUrl finalAppUrls;
@XmlElement(name = "FinalMobileUrls", nillable = true)
protected ArrayOfstring finalMobileUrls;
@XmlElement(name = "FinalUrlSuffix", nillable = true)
protected String finalUrlSuffix;
@XmlElement(name = "FinalUrls", nillable = true)
protected ArrayOfstring finalUrls;
@XmlElement(name = "LineText", nillable = true)
protected String lineText;
@XmlElement(name = "Name", required = true, nillable = true)
protected String name;
@XmlElement(name = "PopupText", nillable = true)
protected String popupText;
@XmlElement(name = "Title", nillable = true)
protected String title;
@XmlElement(name = "TrackingUrlTemplate", nillable = true)
protected String trackingUrlTemplate;
@XmlElement(name = "UrlCustomParameters", nillable = true)
protected CustomParameters urlCustomParameters;
/**
* Gets the value of the disclaimerLayout property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisclaimerLayout() {
return disclaimerLayout;
}
/**
* Sets the value of the disclaimerLayout property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisclaimerLayout(String value) {
this.disclaimerLayout = value;
}
/**
* Gets the value of the finalAppUrls property.
*
* @return
* possible object is
* {@link ArrayOfAppUrl }
*
*/
public ArrayOfAppUrl getFinalAppUrls() {
return finalAppUrls;
}
/**
* Sets the value of the finalAppUrls property.
*
* @param value
* allowed object is
* {@link ArrayOfAppUrl }
*
*/
public void setFinalAppUrls(ArrayOfAppUrl value) {
this.finalAppUrls = value;
}
/**
* Gets the value of the finalMobileUrls property.
*
* @return
* possible object is
* {@link ArrayOfstring }
*
*/
public ArrayOfstring getFinalMobileUrls() {
return finalMobileUrls;
}
/**
* Sets the value of the finalMobileUrls property.
*
* @param value
* allowed object is
* {@link ArrayOfstring }
*
*/
public void setFinalMobileUrls(ArrayOfstring value) {
this.finalMobileUrls = value;
}
/**
* Gets the value of the finalUrlSuffix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFinalUrlSuffix() {
return finalUrlSuffix;
}
/**
* Sets the value of the finalUrlSuffix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFinalUrlSuffix(String value) {
this.finalUrlSuffix = value;
}
/**
* Gets the value of the finalUrls property.
*
* @return
* possible object is
* {@link ArrayOfstring }
*
*/
public ArrayOfstring getFinalUrls() {
return finalUrls;
}
/**
* Sets the value of the finalUrls property.
*
* @param value
* allowed object is
* {@link ArrayOfstring }
*
*/
public void setFinalUrls(ArrayOfstring value) {
this.finalUrls = value;
}
/**
* Gets the value of the lineText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLineText() {
return lineText;
}
/**
* Sets the value of the lineText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLineText(String value) {
this.lineText = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the popupText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPopupText() {
return popupText;
}
/**
* Sets the value of the popupText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPopupText(String value) {
this.popupText = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the trackingUrlTemplate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTrackingUrlTemplate() {
return trackingUrlTemplate;
}
/**
* Sets the value of the trackingUrlTemplate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTrackingUrlTemplate(String value) {
this.trackingUrlTemplate = value;
}
/**
* Gets the value of the urlCustomParameters property.
*
* @return
* possible object is
* {@link CustomParameters }
*
*/
public CustomParameters getUrlCustomParameters() {
return urlCustomParameters;
}
/**
* Sets the value of the urlCustomParameters property.
*
* @param value
* allowed object is
* {@link CustomParameters }
*
*/
public void setUrlCustomParameters(CustomParameters value) {
this.urlCustomParameters = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy