com.microsoft.bing.autosuggest.models.Suggestions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bing-autosuggest Show documentation
Show all versions of bing-autosuggest Show documentation
This module contains the client library for Microsoft Bing AutoSuggest APIs.
The newest version!
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.bing.autosuggest.models;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The Suggestions model.
*/
public class Suggestions extends SearchResultsAnswer {
/**
* The suggestionGroups property.
*/
@JsonProperty(value = "suggestionGroups", required = true)
private List suggestionGroups;
/**
* Get the suggestionGroups value.
*
* @return the suggestionGroups value
*/
public List suggestionGroups() {
return this.suggestionGroups;
}
/**
* Set the suggestionGroups value.
*
* @param suggestionGroups the suggestionGroups value to set
* @return the Suggestions object itself.
*/
public Suggestions withSuggestionGroups(List suggestionGroups) {
this.suggestionGroups = suggestionGroups;
return this;
}
}