All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bing.autosuggest.models.Suggestions Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy