I'm learning to use SwiftyJSON and I'm trying to convert the resulted values into an array of MyStruct. However, whenever I try that, it tells me that they are not compatible. How can I convert [JSON] into [MyStruct]?
class TreatmentsManager: ObservableObject {
@Published var treatments = [Treatment]()
func testAlamofire() {
AF.request("http://dermaservice.theappmaster.com/Tratamiento.ashx").response { response in
switch response.result {
case .success(let value):
let json = JSON(value)
if let treatmentArray = json["Tratamientos"].array {
self.treatments = treatmentArray
//[MyStruct] type /= [JSON] type
}
case .failure(let error):
print(error)
}}}}