I was looking at Openload.co API and I've seen that in the json response some numeric values are represented as integers while others as string, for example in this response:
{
"status": 200,
"msg": "OK",
"result": {
"extid": "extuserid",
"email": "jeff@openload.io",
"signup_at": "2015-01-09 23:59:54",
"storage_left": -1,
"storage_used": "32922117680",
"traffic": {
"left": -1,
"used_24h": 0
},
"balance": 0
}
}
storage_used is a strings and balance is integer. Since they are both numeric values and can't be strings in any case, is there some particular reason to set storage_used as string?