com.microsoft.bingads.v13.campaignmanagement.CreateResponsiveAdRecommendationResponse 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.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 = {
"responsiveAd",
"imageSuggestions",
"videoSuggestions"
})
@XmlRootElement(name = "CreateResponsiveAdRecommendationResponse")
public class CreateResponsiveAdRecommendationResponse {
@XmlElement(name = "ResponsiveAd", nillable = true)
protected ResponsiveAd responsiveAd;
@XmlElement(name = "ImageSuggestions", nillable = true)
protected ArrayOfAdRecommendationImageSuggestion imageSuggestions;
@XmlElement(name = "VideoSuggestions", nillable = true)
protected ArrayOfAdRecommendationVideoSuggestion videoSuggestions;
/**
* Gets the value of the responsiveAd property.
*
* @return
* possible object is
* {@link ResponsiveAd }
*
*/
public ResponsiveAd getResponsiveAd() {
return responsiveAd;
}
/**
* Sets the value of the responsiveAd property.
*
* @param value
* allowed object is
* {@link ResponsiveAd }
*
*/
public void setResponsiveAd(ResponsiveAd value) {
this.responsiveAd = value;
}
/**
* Gets the value of the imageSuggestions property.
*
* @return
* possible object is
* {@link ArrayOfAdRecommendationImageSuggestion }
*
*/
public ArrayOfAdRecommendationImageSuggestion getImageSuggestions() {
return imageSuggestions;
}
/**
* Sets the value of the imageSuggestions property.
*
* @param value
* allowed object is
* {@link ArrayOfAdRecommendationImageSuggestion }
*
*/
public void setImageSuggestions(ArrayOfAdRecommendationImageSuggestion value) {
this.imageSuggestions = value;
}
/**
* Gets the value of the videoSuggestions property.
*
* @return
* possible object is
* {@link ArrayOfAdRecommendationVideoSuggestion }
*
*/
public ArrayOfAdRecommendationVideoSuggestion getVideoSuggestions() {
return videoSuggestions;
}
/**
* Sets the value of the videoSuggestions property.
*
* @param value
* allowed object is
* {@link ArrayOfAdRecommendationVideoSuggestion }
*
*/
public void setVideoSuggestions(ArrayOfAdRecommendationVideoSuggestion value) {
this.videoSuggestions = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy