/** filename: com/{{&sdknameLower}}/CallbackWith.java **/
package com.{{&sdknameLower}};

import org.json.JSONObject;
import java.net.HttpURLConnection;

public interface CallbackWith<T> {

    void onSuccess(T result, JSONObject body, HttpURLConnection connection);

    void onError(Exception exception, JSONObject body, HttpURLConnection connection);

}
