Skip to content

Instantly share code, notes, and snippets.

@marrek13
Created January 16, 2022 19:25
Show Gist options
  • Save marrek13/f35fdd24eb18ecee90826f92b76c53da to your computer and use it in GitHub Desktop.
Save marrek13/f35fdd24eb18ecee90826f92b76c53da to your computer and use it in GitHub Desktop.
interface CatalogClient {
@GET("/catalog/categories")
suspend fun getCategories(@Path("userId") userId: String): List<CategoryResponse>
}
data class CategoryResponse(
val id: String,
val name: String,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment