JsonBColumnType
class JsonBColumnType<T : Any>(serialize: (T) -> String, deserialize: (String) -> T) : JsonColumnType<T>
Column for storing JSON data in binary format.
Parameters
serialize
Function that encodes an object of type T to a JSON String
deserialize
Function that decodes a JSON String to an object of type T