commonMain.io.github.jan.supabase.storage.FileUploadResponse.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
/**
* The response of a file upload
* @param id The id of the file
* @param path The path to the file. Can be used as is in [BucketApi] uploading methods
* @param key The key of the file
*/
data class FileUploadResponse(
val id: String? = null,
val path: String,
val key: String? = null
)