Congratulations, your code generation was successful! To use the generated Swift models:
If you have more services to convert, it's advised to rename the Json4Swift_Base
class according to your business logic.
let url = URL(string: "http://www.stackoverflow.com") let task = URLSession.shared.dataTask(with: url!) { (data, response, error) in let jsonDecoder = JSONDecoder() let responseModel = try jsonDecoder.decode(Json4Swift_Base.self, from: data!) } task.resume()
// Convert JSON String to Model let responseModel = Mapper<Json4Swift_Base>().map(JSONString: JSONString) // Create JSON String from Model let JSONString = Mapper().toJSONString(responseModel, prettyPrint: true)
let url = URL(string: "http://www.json4swift.com") let task = URLSession.shared.dataTask(with: url!) { (data, response, error) in let someDictionaryFromJSON = try JSONSerialization.jsonObject(with: data, options: .allowFragments) as! [String: Any] let json4Swift_Base = Json4Swift_Base(someDictionaryFromJSON) } task.resume()
If you have any questions or run into any issues, feel free to contact us through the support links available at the top of this page. We hope that you have found our tool valuable and that it has enhanced your productivity. Thank you for using JSON4Swift. We wish you all the best in your coding endeavors!