com.contentstack.sdk.TaxonomyCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
Java SDK for Contentstack Content Delivery API
package com.contentstack.sdk;
import okhttp3.ResponseBody;
import org.json.JSONObject;
public interface TaxonomyCallback {
/**
* This method is called wen API response gets received
* @param response the response of type JSON
* @param error the error of type @{@link Error}
*/
void onResponse(JSONObject response, Error error);
}