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

org.dc.riot.lol.rx.model.status.Translation Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy