package com.huhx0015.gw2at.model.responses.achievements; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Reward { @SerializedName("type") @Expose private String type; @SerializedName("id") @Expose private Integer id; @SerializedName("count") @Expose private Integer count; @SerializedName("region") @Expose private String region; public String getType() { return type; } public void setType(String type) { this.type = type; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } }