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

com.microsoft.bing.websearch.models.RankingRankingResponse 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 com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Defines where on the search results page content should be placed and in
 * what order.
 */
public class RankingRankingResponse {
    /**
     * The search results that should be afforded the most visible treatment
     * (for example, displayed above the mainline and sidebar).
     */
    @JsonProperty(value = "pole", access = JsonProperty.Access.WRITE_ONLY)
    private RankingRankingGroup pole;

    /**
     * The search results to display in the mainline.
     */
    @JsonProperty(value = "mainline", access = JsonProperty.Access.WRITE_ONLY)
    private RankingRankingGroup mainline;

    /**
     * The search results to display in the sidebar.
     */
    @JsonProperty(value = "sidebar", access = JsonProperty.Access.WRITE_ONLY)
    private RankingRankingGroup sidebar;

    /**
     * Get the search results that should be afforded the most visible treatment (for example, displayed above the mainline and sidebar).
     *
     * @return the pole value
     */
    public RankingRankingGroup pole() {
        return this.pole;
    }

    /**
     * Get the search results to display in the mainline.
     *
     * @return the mainline value
     */
    public RankingRankingGroup mainline() {
        return this.mainline;
    }

    /**
     * Get the search results to display in the sidebar.
     *
     * @return the sidebar value
     */
    public RankingRankingGroup sidebar() {
        return this.sidebar;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy