tristanhimmelman / AlamofireObjectMapper

An Alamofire extension which converts JSON response data into swift objects using ObjectMapper
MIT License
2.66k stars 476 forks source link

send array parameters #318

Closed renzrz closed 3 years ago

renzrz commented 3 years ago

Hi,

So for my app, there's an array parameter that's not having a key and it using .put method Here's the parameters that i want to send: [ { id: String, firstName: String, lastName: String }, { id: String, firstName: String, lastName: String } ]

how to attach it into alamofireobjectmapper parameters? Thank you