Config

data class Config(var defaultSchema: String = "public", var propertyConversionMethod: PropertyConversionMethod = PropertyConversionMethod.CAMEL_CASE_TO_SNAKE_CASE) : MainConfig, CustomSerializationConfig(source)

Config for the Postgrest plugin

Parameters

defaultSchema

The default schema to use for the requests. Defaults to "public"

propertyConversionMethod

The method to use to convert the property names to the column names in PostgrestRequestBuilder and PostgrestUpdate. Defaults to PropertyConversionMethod.CAMEL_CASE_TO_SNAKE_CASE

Constructors

Link copied to clipboard
constructor(defaultSchema: String = "public", propertyConversionMethod: PropertyConversionMethod = PropertyConversionMethod.CAMEL_CASE_TO_SNAKE_CASE)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override var serializer: SupabaseSerializer?