Files
fast-messenger/app/src/main/java/com/meloda/fast/api/VKRepo.kt
T
2021-08-04 23:01:22 +03:00

17 lines
412 B
Kotlin

package com.meloda.fast.api
import com.meloda.fast.api.model.response.GetConversationsResponse
import retrofit2.http.Field
import retrofit2.http.FormUrlEncoded
import retrofit2.http.POST
interface VKRepo {
@FormUrlEncoded
@POST(VKUrls.getConversations)
suspend fun getAllChats(
@Field("user_id") chatId: Int,
@Field("token") token: String
): Answer<GetConversationsResponse>
}