Instructions for Using Generated Code

Congratulations, your code generation was successful! To use the generated Swift models:

  1. Unzip the downloaded file.
  2. Drag and drop the files into your Xcode project.
  3. Refer to the sample usages below for integrating the code using either Codable, ObjectMapper or Dictionary.

If you have more services to convert, it's advised to rename the Json4Swift_Base class according to your business logic.

Sample Usage

Using Codeable Mapping

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()

Using ObjectMapper

// 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)

Using Dictionary Mapping

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!