package com.huhx0015.gw2at.model.responses.account; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class AccountFinishersResponse { @SerializedName("id") @Expose private Integer id; @SerializedName("permanent") @Expose private Boolean permanent; @SerializedName("quantity") @Expose private Integer quantity; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Boolean getPermanent() { return permanent; } public void setPermanent(Boolean permanent) { this.permanent = permanent; } public Integer getQuantity() { return quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } }