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

me.xhsun.guildwars2wrapper.model.v2.story.Story Maven / Gradle / Ivy

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