Back to project page u2020.
The source code is released under:
Apache License
If you think the Android project u2020 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.jakewharton.u2020.data.api.model; // w w w. ja v a 2s .c o m public final class Image { public final String id; public final String link; public final String title; public final int width; public final int height; public final long datetime; public final int views; public final boolean is_album; public Image(String id, String link, String title, int width, int height, long datetime, int views, boolean isAlbum) { this.id = id; this.link = link; this.title = title; this.width = width; this.height = height; this.datetime = datetime; this.views = views; this.is_album = isAlbum; } }