package com.huhx0015.gw2at.model.responses; import java.util.List; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class OutfitsResponse { @SerializedName("id") @Expose private Integer id; @SerializedName("name") @Expose private String name; @SerializedName("icon") @Expose private String icon; @SerializedName("unlock_items") @Expose private List<Integer> unlockItems = null; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getIcon() { return icon; } public void setIcon(String icon) { this.icon = icon; } public List<Integer> getUnlockItems() { return unlockItems; } public void setUnlockItems(List<Integer> unlockItems) { this.unlockItems = unlockItems; } }