Paste JSON and get Kotlin data classes with inferred property types (Long, Double, Boolean, String, List
Idiomatic Kotlin data class declarations with val properties inferred from your JSON.
Integers become Long, decimals Double, strings String, booleans Boolean, arrays List<T>, and null becomes the nullable Any?.
Each nested JSON object becomes its own named data class.