org.gs4tr.gcc.restclient.model.Locale Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Locale {
@JsonProperty("locale")
private String locale;
@JsonProperty("locale_display_name")
private String localeDisplayName;
public Locale(){
}
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public String getLocaleDisplayName() {
return localeDisplayName;
}
public void setLocaleDisplayName(String localeDisplayName) {
this.localeDisplayName = localeDisplayName;
}
}