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

me.xhsun.guildwars2wrapper.model.v2.guild.GuildRank Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2.guild;

import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableStr;

import java.util.List;

/**
 * For more info on guild ranks API go here
* Model class for guild ranks * * @author xhsun * @since 2017-06-19 */ public class GuildRank extends IdentifiableStr { private int order; private String icon; private List permissions; public int getOrder() { return order; } public String getIcon() { return icon; } public List getPermissions() { return permissions; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy