me.xhsun.guildwars2wrapper.model.v2.backstory.BackStoryAnswer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw2wrapper Show documentation
Show all versions of gw2wrapper Show documentation
Guild Wars 2 API wrapper for Android
package me.xhsun.guildwars2wrapper.model.v2.backstory;
import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableStr;
import me.xhsun.guildwars2wrapper.model.v2.Item;
import java.util.List;
/**
* For more info on back story answer API go here
* Model class for back story answer
*
* @author xhsun
* @since 2017-06-07
*/
public class BackStoryAnswer extends IdentifiableStr {
private String title, description, journal;
private int question;
private List professions, races;
public String getTitle() {
return title;
}
public String getDescription() {
return description;
}
public String getJournal() {
return journal;
}
/**
* @return {@link BackStoryQuestion#id}
*/
public int getQuestion() {
return question;
}
public List getProfessions() {
return professions;
}
public List getRaces() {
return races;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy