org.zendesk.client.v2.model.hc.Locales Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zendesk-java-client Show documentation
Show all versions of zendesk-java-client Show documentation
Java client for the Zendesk API
The newest version!
package org.zendesk.client.v2.model.hc;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class Locales {
@JsonProperty("default_locale")
private String defaultLocale;
private List locales;
public String getDefaultLocale() {
return defaultLocale;
}
public void setDefaultLocale(String defaultLocale) {
this.defaultLocale = defaultLocale;
}
public List getLocales() {
return locales;
}
public void setLocales(List locales) {
this.locales = locales;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy