Back to project page transloadit-Android-sdk.
The source code is released under:
MIT License
If you think the Android project transloadit-Android-sdk 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 hu.szabot.transloadit; //ww w . j a va2 s .com import java.util.HashMap; /**Interface for API response*/ public interface IApiResponse { /**Gets the response string*/ String getResponseString(); /**Gets data tree parsed from the sent response string*/ HashMap<String, Object> getData(); /**Gets success information about the sent request*/ boolean isSuccess(); }