/**
* 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.appservice.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.Resource;
/**
* Geographical region.
*/
@JsonFlatten
public class GeoRegionInner extends Resource {
/**
* Region name.
*/
@JsonProperty(value = "properties.name", access = JsonProperty.Access.WRITE_ONLY)
private String geoRegionName;
/**
* Region description.
*/
@JsonProperty(value = "properties.description", access = JsonProperty.Access.WRITE_ONLY)
private String description;
/**
* Display name for region.
*/
@JsonProperty(value = "properties.displayName", access = JsonProperty.Access.WRITE_ONLY)
private String displayName;
/**
* Get the geoRegionName value.
*
* @return the geoRegionName value
*/
public String geoRegionName() {
return this.geoRegionName;
}
/**
* Get the description value.
*
* @return the description value
*/
public String description() {
return this.description;
}
/**
* Get the displayName value.
*
* @return the displayName value
*/
public String displayName() {
return this.displayName;
}
}