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

commonMain.io.github.jan.supabase.storage.UploadData.kt Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.jan.supabase.storage

import io.ktor.utils.io.ByteReadChannel

/**
 * Represents the data to upload
 * @param stream The [ByteReadChannel] for streaming the data
 * @param size The size of the data
 */
data class UploadData(val stream: ByteReadChannel, val size: Long)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy