org.dc.riot.lol.rx.model.status.Translation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lol-api-rxjava Show documentation
Show all versions of lol-api-rxjava Show documentation
Service library for League of Legends API
package org.dc.riot.lol.rx.model.status;
/**
* Used by the Status API.
*
* @author Dc
* @since 1.0.0
*/
public class Translation {
private static long COUNT = 0;
public static long getInstanceCount() {
return COUNT;
}
private String content;
private String updated_at;
private String locale;
public Translation() {
COUNT++;
}
/**
* @return Locale.
*/
public String getLocale() {
return locale;
}
/**
* @return Last update time or null
* if not defined.
*/
public String getUpdatedAt() {
return updated_at;
}
/**
* @return Content.
*/
public String getContent() {
return content;
}
}