com.microsoft.bingads.v13.campaignmanagement.CreateResponsiveAdRecommendationRequest Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import java.util.Collection;
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;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* 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 = {
"adSubType",
"finalUrls",
"prompt",
"textTone"
})
@XmlRootElement(name = "CreateResponsiveAdRecommendationRequest")
public class CreateResponsiveAdRecommendationRequest {
@XmlElement(name = "AdSubType", type = String.class, nillable = true)
@XmlJavaTypeAdapter(Adapter2 .class)
protected Collection adSubType;
@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 adSubType property.
*
* @return
* possible object is
* {@link String }
*
*/
public Collection getAdSubType() {
return adSubType;
}
/**
* Sets the value of the adSubType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdSubType(Collection value) {
this.adSubType = 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 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