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

me.xhsun.guildwars2wrapper.model.v2.backstory.BackStoryAnswer 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.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