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