me.xhsun.guildwars2wrapper.model.v2.story.Story 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.story;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;
import me.xhsun.guildwars2wrapper.model.v2.Item;
import java.util.List;
/**
* For more info on stories API go here
* Model class for story
*
* @author xhsun
* @since 2017-06-19
*/
public class Story extends NameableInt {
private enum Flag {RequiresUnlock}
private String season, description, timeline;
private int level, order;
private List chapters;
private List races;
private List flags;
public String getSeason() {
return season;
}
public String getDescription() {
return description;
}
public String getTimeline() {
return timeline;
}
public int getLevel() {
return level;
}
public int getOrder() {
return order;
}
public List getChapters() {
return chapters;
}
public List getRaces() {
return races;
}
public List getFlags() {
return flags;
}
public class Chapter {
private String name;
public String getName() {
return name;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy