I am trying to order the below object by name. I want the list  to be ordered in the following way 1)balloon 2)term 3)instalment.
loanAdjustmentList = [
    {
        "description": "Restructure Option",
        "name": "instalment",
        "restructureAllowed": "N",
        "reason": "Due to the status of your account we are unable to process your request. Please contact 0860 669 669 for more information",
        "reasonCode": "1"
    },
    {
        "description": "Restructure Option",
        "name": "term",
        "restructureAllowed": "N",
        "reason": "Due to the status of your account we are unable to process your request. Please contact 0860 669 669 for more information",
        "reasonCode": "1"
    },
    {
        "description": "Restructure Option",
        "name": "balloon",
        "restructureAllowed": "N",
        "reason": "Due to the status of your account we are unable to process your request. Please contact 0860 669 669 for more information",
        "reasonCode": "1"
    }
]
Any idea what I can try?
 
     
    