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

com.microsoft.bing.websearch.models.WebWebGrouping Maven / Gradle / Ivy

/**
 * 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.websearch.models;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;

/**
 * The WebWebGrouping model.
 */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "_type", defaultImpl = WebWebGrouping.class)
@JsonTypeName("Web/WebGrouping")
public class WebWebGrouping {
    /**
     * The webPages property.
     */
    @JsonProperty(value = "webPages", required = true)
    private List webPages;

    /**
     * Get the webPages value.
     *
     * @return the webPages value
     */
    public List webPages() {
        return this.webPages;
    }

    /**
     * Set the webPages value.
     *
     * @param webPages the webPages value to set
     * @return the WebWebGrouping object itself.
     */
    public WebWebGrouping withWebPages(List webPages) {
        this.webPages = webPages;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy