RawJson

@Serializable(with = RawJsonSerializer::class)
expect sealed interface RawJson(source)

rawJson returns this wrapper around a given raw JSON string, controlling how the JSON string is serialized:

In the JVM implementation, this class is also serializable with Jackson, with the same serialization behavior.

@Serializable(with = RawJsonSerializer::class)
actual interface RawJson(source)