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

me.xhsun.guildwars2wrapper.model.account.UnlockedFinisher Maven / Gradle / Ivy

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

/**
 * For more info on Account finishers API go here
* Model class for account finishers * * @author xhsun * @since 2017-06-05 */ public class UnlockedFinisher { private int id; private boolean permanent; private int quantity; public int getId() { return id; } public boolean isPermanent() { return permanent; } public int getQuantity() { return quantity; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; UnlockedFinisher finisher = (UnlockedFinisher) o; return id == finisher.id; } @Override public int hashCode() { return id; } @Override public String toString() { return "UnlockedFinisher{" + "id=" + id + ", permanent=" + permanent + ", quantity=" + quantity + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy