package com.huhx0015.gw2at.model.responses; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class WalletResponse { @SerializedName("id") @Expose private Integer id; @SerializedName("value") @Expose private Integer value; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getValue() { return value; } public void setValue(Integer value) { this.value = value; } }