ToolResultStringSerializer
open class ToolResultStringSerializer<T>(val descriptor: SerialDescriptor = PrimitiveSerialDescriptor("ToolResultString", PrimitiveKind.STRING), toStringConverter: (T) -> String) : KSerializer<T> (source)
A generic simple serializer for serializing objects of type T into their string representation using a custom converter.
Parameters
T
The type of the object to be serialized.