com.microsoft.bingads.v13.campaignmanagement.CreateResponsiveSearchAdRecommendationRequest 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.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"finalUrls",
"prompt",
"textTone"
})
@XmlRootElement(name = "CreateResponsiveSearchAdRecommendationRequest")
public class CreateResponsiveSearchAdRecommendationRequest {
@XmlElement(name = "FinalUrls", nillable = true)
protected ArrayOfstring finalUrls;
@XmlElement(name = "Prompt", nillable = true)
protected String prompt;
@XmlElement(name = "TextTone", nillable = true)
@XmlSchemaType(name = "string")
protected AdRecommendationTextTone textTone;
/**
* 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 prompt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrompt() {
return prompt;
}
/**
* Sets the value of the prompt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrompt(String value) {
this.prompt = value;
}
/**
* Gets the value of the textTone property.
*
* @return
* possible object is
* {@link AdRecommendationTextTone }
*
*/
public AdRecommendationTextTone getTextTone() {
return textTone;
}
/**
* Sets the value of the textTone property.
*
* @param value
* allowed object is
* {@link AdRecommendationTextTone }
*
*/
public void setTextTone(AdRecommendationTextTone value) {
this.textTone = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy