All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.dev.inmo.tgbotapi.requests.DownloadFileStream.kt Maven / Gradle / Ivy

Go to download

Core part of tgbotapi with all (and only) required functionality for working with Telegram Bot API

There is a newer version: 23.1.0
Show newest version
package dev.inmo.tgbotapi.requests

import dev.inmo.tgbotapi.requests.abstracts.Request
import dev.inmo.tgbotapi.utils.ByteReadChannelAllocator
import dev.inmo.tgbotapi.utils.ByteReadChannelAllocatorDeserializationStrategy
import kotlinx.serialization.DeserializationStrategy

class DownloadFileStream(
    val filePath: String
) : Request {
    override fun method(): String = filePath
    override val resultDeserializer: DeserializationStrategy
        get() = ByteReadChannelAllocatorDeserializationStrategy

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy