me.xhsun.guildwars2wrapper.model.v2.backstory.BackStoryQuestion 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.IdentifiableInt;
import me.xhsun.guildwars2wrapper.model.v2.Item;
import java.util.List;
/**
* For more info on back story questions API go here
* Model class for back story question
*
* @author xhsun
* @since 2017-06-07
*/
public class BackStoryQuestion extends IdentifiableInt {
private String title, description;
private List answers;
private int order;
private List professions, races;
public String getTitle() {
return title;
}
public String getDescription() {
return description;
}
/**
* @return list of {@link BackStoryAnswer#id}
*/
public List getAnswers() {
return answers;
}
public int getOrder() {
return order;
}
public List getProfessions() {
return professions;
}
public List getRaces() {
return races;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy