Skip to content

Instantly share code, notes, and snippets.

@RobertApikyan
Created September 22, 2021 12:01
Embed
What would you like to do?
package com.hfh.wellbe.smartwatch.api.apiClient.retrofit.services
import com.hfh.wellbe.smartwatch.models.AssistantTextRequest
import com.hfh.wellbe.smartwatch.models.AssistantTextResponse
import retrofit2.Call
import retrofit2.http.Body
import retrofit2.http.POST
interface GenericUserApiService {
@POST("stt/text-request-limited")
fun textRequestLimited(
@Body textRequest: AssistantTextRequest
): Call<AssistantTextResponse>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment