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

me.xhsun.guildwars2wrapper.model.v2.backstory.BackStoryQuestion Maven / Gradle / Ivy

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