package it.inaf.ia2.gms.model.response; public class SearchResponseItem { private SearchResponseType type; private String label; private String id; public SearchResponseType getType() { return type; } public void setType(SearchResponseType type) { this.type = type; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public String getId() { return id; } public void setId(String id) { this.id = id; } }