Skip to content

Instantly share code, notes, and snippets.

@zurche
Created February 13, 2017 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zurche/974fde94d1b1738979d37cc3ad4da414 to your computer and use it in GitHub Desktop.
Save zurche/974fde94d1b1738979d37cc3ad4da414 to your computer and use it in GitHub Desktop.
import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class LogoResponse {
@SerializedName("responses")
@Expose
private List<Response> responses = null;
public List<Response> getResponses() {
return responses;
}
public void setResponses(List<Response> responses) {
this.responses = responses;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment