Skip to content

Instantly share code, notes, and snippets.

@zurche
Created February 13, 2017 18:15
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/aaff95d1432937703491653446f93637 to your computer and use it in GitHub Desktop.
Save zurche/aaff95d1432937703491653446f93637 to your computer and use it in GitHub Desktop.
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class LogoBodyModel {
@SerializedName("requests")
@Expose
private List<Request> requests = null;
public List<Request> getRequests() {
return requests;
}
public void setRequests(List<Request> requests) {
this.requests = requests;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment