commonMain.io.github.jan.supabase.postgrest.PostgrestErrorResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postgrest-kt-jvm Show documentation
Show all versions of postgrest-kt-jvm Show documentation
Extends supabase-kt with a Postgrest Client
package io.github.jan.supabase.postgrest
import kotlinx.serialization.Serializable
@Serializable
internal data class PostgrestErrorResponse(
val message: String,
val hint: String? = null,
val details: String? = null,
val code: String? = null,
)