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

me.figo.models.Challenge Maven / Gradle / Ivy

package me.figo.models;

import com.google.gson.annotations.Expose;

public class Challenge {

	@Expose
	private String title;
	
	@Expose
	private String label;
	
	@Expose
	private String format;
	
	@Expose
	private String data;

	public String getTitle() {
		return title;
	}

	public String getLabel() {
		return label;
	}

	public String getFormat() {
		return format;
	}

	public String getData() {
		return data;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy