/** * This code is autogenerated by Touch Instinct tools */ package {{ packageName }}.api; import android.support.annotation.NonNull; import io.reactivex.Single; import retrofit2.http.Body; import retrofit2.http.POST; public interface {{ name }}Api { {% for method in methods %} {%- include 'blocks/method/method-func.twig' with { method: method } %} {% endfor %} }