com.microsoft.bingads.v13.campaignmanagement.CreateAssetGroupRecommendationResponse 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 = {
"assetGroup",
"imageSuggestions"
})
@XmlRootElement(name = "CreateAssetGroupRecommendationResponse")
public class CreateAssetGroupRecommendationResponse {
@XmlElement(name = "AssetGroup", nillable = true)
protected AssetGroup assetGroup;
@XmlElement(name = "ImageSuggestions", nillable = true)
protected ArrayOfAdRecommendationImageSuggestion imageSuggestions;
/**
* Gets the value of the assetGroup property.
*
* @return
* possible object is
* {@link AssetGroup }
*
*/
public AssetGroup getAssetGroup() {
return assetGroup;
}
/**
* Sets the value of the assetGroup property.
*
* @param value
* allowed object is
* {@link AssetGroup }
*
*/
public void setAssetGroup(AssetGroup value) {
this.assetGroup = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy