Swift, Kotlin, TypeScriptなど各種言語に対応しています。
お手持ちのJSONを用意して、
{
"greeting": "Welcome to quicktype!",
"instructions": [
"Type or paste JSON here",
"Or choose a sample above",
"quicktype will generate code in your",
"chosen language to parse the sample data"
]
}
Swiftへ変換
import Foundation
// MARK: - Welcome
struct Welcome: Codable {
let greeting: String
let instructions: [String]
}