I have a list of objects that I have retrieved from a webservice call. On the other end, the list of objects looks like this:
({ead=3/11/2016, qty=8}, {ead=4/22/2016, qty=46}, {ead=10/26/2016, qty=34})
However, once the list gets pulled into Salesforce, it comes in this format:
({ead=10/26/2016, qty=34}, {ead=3/11/2016, qty=8}, {ead=4/22/2016, qty=46}).
I need to keep the first format. How do I do this?