kencode/com.eignex.kencode/EncodedFormat/Default Default object Default : EncodedFormat(source)Default format: PackedFormat + Base62, no transform. Members Properties configuration Link copied to clipboard val configuration: EncodedConfigurationThe active configuration dictating the codec, transform, and binary format. serializersModule Link copied to clipboard open override val serializersModule: SerializersModuleDelegates to the underlying BinaryFormat's serializers module. Functions decodeFromString Link copied to clipboard open override fun <T> decodeFromString(deserializer: DeserializationStrategy<T>, string: String): TDecodes string using the text codec, applies the inverse transform, then deserializes with the configured binary format. encodeToString Link copied to clipboard open override fun <T> encodeToString(serializer: SerializationStrategy<T>, value: T): StringSerializes value with the configured binary format, applies the transform, and encodes the resulting byte array using the text codec.