tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/requests/abstracts/Request.kt

9 lines
213 B
Kotlin
Raw Normal View History

2018-12-26 08:07:24 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.requests.abstracts
import kotlinx.serialization.*
interface Request<T: Any> {
fun method(): String
2019-12-02 08:35:37 +00:00
val resultDeserializer: DeserializationStrategy<T>
2018-12-26 08:07:24 +00:00
}