Package-level declarations
Custom Kotlinx.serialization serializers for use. Currently, the following serializers are available:
JsonSchemaFormatSerializerfor formatting aJsonSchemaFormat
Types
Link copied to clipboard
Serializer to serialize/deserialize a JsonSchemaFormat.
Link copied to clipboard
open class ListWrapSerializer<T : Any>(elementSerializer: KSerializer<T>) : JsonTransformingSerializer<List<T>>
Utility serializer that always wraps the specified data in a list if it is not already so.
Link copied to clipboard
open class SetWrapSerializer<T : Any>(elementSerializer: KSerializer<T>) : JsonTransformingSerializer<Set<T>>
Utility serializer that always wraps the specified data in a set if it is not already so.