Back to project page Amphitheatre.
The source code is released under:
Apache License
If you think the Android project Amphitheatre listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jerrellmardis.amphitheatre.model.tmdb; //from w ww.j av a2 s . co m import java.util.List; /** * Created by rharter on 11/2/14. */ public class Videos { private Long id; private List<Video> results; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public List<Video> getResults() { return results; } public void setResults(List<Video> results) { this.results = results; } public static class Video { private String id; private String iso_639_1; private String key; private String name; private String site; private String size; private String type; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getIso_639_1() { return iso_639_1; } public void setIso_639_1(String iso_639_1) { this.iso_639_1 = iso_639_1; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSite() { return site; } public void setSite(String site) { this.site = site; } public String getSize() { return size; } public void setSize(String size) { this.size = size; } public String getType() { return type; } public void setType(String type) { this.type = type; } } }