com.microsoft.bingads.v10.campaignmanagement.ExpandedTextAd 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.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;
/**
* Java class for ExpandedTextAd complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExpandedTextAd">
* <complexContent>
* <extension base="{https://bingads.microsoft.com/CampaignManagement/v10}Ad">
* <sequence>
* <element name="DisplayUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Path1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Path2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="TitlePart1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="TitlePart2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExpandedTextAd", propOrder = {
"displayUrl",
"path1",
"path2",
"text",
"titlePart1",
"titlePart2"
})
public class ExpandedTextAd
extends Ad
{
@XmlElement(name = "DisplayUrl", nillable = true)
protected String displayUrl;
@XmlElement(name = "Path1", nillable = true)
protected String path1;
@XmlElement(name = "Path2", nillable = true)
protected String path2;
@XmlElement(name = "Text", required = true, nillable = true)
protected String text;
@XmlElement(name = "TitlePart1", required = true, nillable = true)
protected String titlePart1;
@XmlElement(name = "TitlePart2", required = true, nillable = true)
protected String titlePart2;
/**
* Gets the value of the displayUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplayUrl() {
return displayUrl;
}
/**
* Sets the value of the displayUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplayUrl(String value) {
this.displayUrl = value;
}
/**
* Gets the value of the path1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPath1() {
return path1;
}
/**
* Sets the value of the path1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPath1(String value) {
this.path1 = value;
}
/**
* Gets the value of the path2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPath2() {
return path2;
}
/**
* Sets the value of the path2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPath2(String value) {
this.path2 = 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 titlePart1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitlePart1() {
return titlePart1;
}
/**
* Sets the value of the titlePart1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitlePart1(String value) {
this.titlePart1 = value;
}
/**
* Gets the value of the titlePart2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitlePart2() {
return titlePart2;
}
/**
* Sets the value of the titlePart2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitlePart2(String value) {
this.titlePart2 = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy