After doing some debugging, I found that the data contained what I needed, not the response. I simply changed this line:
let ar = try decoder.decode(AAA_Result.self, from: response.value)
to this, and all is working!
let ar = try decoder.decode(AAA_Result.self, from: data!)
Thanks very much for pointing me in the right direction!
Topic:
App & System Services
SubTopic:
Networking