Skip to content

Instantly share code, notes, and snippets.

@RobertApikyan
Created September 22, 2021 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobertApikyan/2221825a10822c4249ee193df66dd472 to your computer and use it in GitHub Desktop.
Save RobertApikyan/2221825a10822c4249ee193df66dd472 to your computer and use it in GitHub Desktop.
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