commonMain.io.github.jan.supabase.storage.UploadSignedUrl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of storage-kt-jvm Show documentation
Show all versions of storage-kt-jvm Show documentation
Extends supabase-kt with a Storage Client
package io.github.jan.supabase.storage
/**
* A signed url to upload a file
* @param url The signed url
* @param path The path of the file
* @param token The token to use for the upload
*/
data class UploadSignedUrl(
val url: String,
val path: String,
val token: String
)