com.microsoft.bingads.v13.campaignmanagement.AdRecommendationImageSuggestion 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.XmlType;
/**
* Java class for AdRecommendationImageSuggestion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdRecommendationImageSuggestion", propOrder = {
"assetLink",
"image",
"imageUrl"
})
public class AdRecommendationImageSuggestion {
@XmlElement(name = "AssetLink", nillable = true)
protected AssetLink assetLink;
@XmlElement(name = "Image", nillable = true)
protected Image image;
@XmlElement(name = "ImageUrl", nillable = true)
protected String imageUrl;
/**
* Gets the value of the assetLink property.
*
* @return
* possible object is
* {@link AssetLink }
*
*/
public AssetLink getAssetLink() {
return assetLink;
}
/**
* Sets the value of the assetLink property.
*
* @param value
* allowed object is
* {@link AssetLink }
*
*/
public void setAssetLink(AssetLink value) {
this.assetLink = value;
}
/**
* Gets the value of the image property.
*
* @return
* possible object is
* {@link Image }
*
*/
public Image getImage() {
return image;
}
/**
* Sets the value of the image property.
*
* @param value
* allowed object is
* {@link Image }
*
*/
public void setImage(Image value) {
this.image = value;
}
/**
* Gets the value of the imageUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getImageUrl() {
return imageUrl;
}
/**
* Sets the value of the imageUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setImageUrl(String value) {
this.imageUrl = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy