Back to project page antigravity.
The source code is released under:
GNU General Public License
If you think the Android project antigravity 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.floatboth.antigravity.data; /* w ww . j a va2 s . c om*/ import java.util.Date; import java.io.Serializable; import java.util.ArrayList; import com.google.gson.annotations.SerializedName; public final class File implements Serializable { public String name; public String url; public String id; public String kind; public String type; public long size; @SerializedName("public") public boolean isPublic; @SerializedName("url_short") public String shortUrl; @SerializedName("created_at") public Date createdAt; @SerializedName("url_expires") public Date urlExpires; @SerializedName("file_token") public String fileToken; @SerializedName("file_token_read") public String fileTokenRead; @SerializedName("derived_files") public DerivedFiles derivedFiles; public boolean isDeleted; // used by the app, not ADN as a flag // to remove the file from the cache. @SuppressWarnings("serial") public static class List extends ArrayList<File> { public ADNMeta meta; } }