package com.huhx0015.gw2at.model.responses.items; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Attribute { @SerializedName("attribute") @Expose private String attribute; @SerializedName("modifier") @Expose private Integer modifier; public String getAttribute() { return attribute; } public void setAttribute(String attribute) { this.attribute = attribute; } public Integer getModifier() { return modifier; } public void setModifier(Integer modifier) { this.modifier = modifier; } }