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

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

There is a newer version: 3.0.2
Show newest version
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
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy