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

com.microsoft.azure.management.network.AvailableProvidersListCountry 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;

/**
 * Country details.
 */
public class AvailableProvidersListCountry {
    /**
     * The country name.
     */
    @JsonProperty(value = "countryName")
    private String countryName;

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

    /**
     * List of available states in the country.
     */
    @JsonProperty(value = "states")
    private List states;

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

    /**
     * Set the country name.
     *
     * @param countryName the countryName value to set
     * @return the AvailableProvidersListCountry object itself.
     */
    public AvailableProvidersListCountry withCountryName(String countryName) {
        this.countryName = countryName;
        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 AvailableProvidersListCountry object itself.
     */
    public AvailableProvidersListCountry withProviders(List providers) {
        this.providers = providers;
        return this;
    }

    /**
     * Get list of available states in the country.
     *
     * @return the states value
     */
    public List states() {
        return this.states;
    }

    /**
     * Set list of available states in the country.
     *
     * @param states the states value to set
     * @return the AvailableProvidersListCountry object itself.
     */
    public AvailableProvidersListCountry withStates(List states) {
        this.states = states;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy