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

com.microsoft.azure.management.network.AvailableProvidersListState Maven / Gradle / Ivy

There is a newer version: 1.41.4
Show 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.azure.management.network;

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

/**
 * State details.
 */
public class AvailableProvidersListState {
    /**
     * The state name.
     */
    @JsonProperty(value = "stateName")
    private String stateName;

    /**
     * A list of Internet service providers.
     */
    @JsonProperty(value = "providers")
    private List providers;

    /**
     * List of available cities or towns in the state.
     */
    @JsonProperty(value = "cities")
    private List cities;

    /**
     * Get the state name.
     *
     * @return the stateName value
     */
    public String stateName() {
        return this.stateName;
    }

    /**
     * Set the state name.
     *
     * @param stateName the stateName value to set
     * @return the AvailableProvidersListState object itself.
     */
    public AvailableProvidersListState withStateName(String stateName) {
        this.stateName = stateName;
        return this;
    }

    /**
     * Get a list of Internet service providers.
     *
     * @return the providers value
     */
    public List providers() {
        return this.providers;
    }

    /**
     * Set a list of Internet service providers.
     *
     * @param providers the providers value to set
     * @return the AvailableProvidersListState object itself.
     */
    public AvailableProvidersListState withProviders(List providers) {
        this.providers = providers;
        return this;
    }

    /**
     * Get list of available cities or towns in the state.
     *
     * @return the cities value
     */
    public List cities() {
        return this.cities;
    }

    /**
     * Set list of available cities or towns in the state.
     *
     * @param cities the cities value to set
     * @return the AvailableProvidersListState object itself.
     */
    public AvailableProvidersListState withCities(List cities) {
        this.cities = cities;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy