com.microsoft.bingads.v13.adinsight.SuggestedResponsiveSearchAd 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.adinsight;
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 SuggestedResponsiveSearchAd complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SuggestedResponsiveSearchAd", propOrder = {
"descriptions",
"finalUrl",
"headlines",
"path1",
"path2"
})
public class SuggestedResponsiveSearchAd {
@XmlElement(name = "Descriptions", nillable = true)
protected ArrayOfstring descriptions;
@XmlElement(name = "FinalUrl", nillable = true)
protected String finalUrl;
@XmlElement(name = "Headlines", nillable = true)
protected ArrayOfstring headlines;
@XmlElement(name = "Path1", nillable = true)
protected String path1;
@XmlElement(name = "Path2", nillable = true)
protected String path2;
/**
* Gets the value of the descriptions property.
*
* @return
* possible object is
* {@link ArrayOfstring }
*
*/
public ArrayOfstring getDescriptions() {
return descriptions;
}
/**
* Sets the value of the descriptions property.
*
* @param value
* allowed object is
* {@link ArrayOfstring }
*
*/
public void setDescriptions(ArrayOfstring value) {
this.descriptions = value;
}
/**
* Gets the value of the finalUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFinalUrl() {
return finalUrl;
}
/**
* Sets the value of the finalUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFinalUrl(String value) {
this.finalUrl = value;
}
/**
* Gets the value of the headlines property.
*
* @return
* possible object is
* {@link ArrayOfstring }
*
*/
public ArrayOfstring getHeadlines() {
return headlines;
}
/**
* Sets the value of the headlines property.
*
* @param value
* allowed object is
* {@link ArrayOfstring }
*
*/
public void setHeadlines(ArrayOfstring value) {
this.headlines = 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;
}
}