"data": {
"id": 9,
"name": "tala",
"role": "Student",
"email": "tala@gmail.com",
"students": [
{
"id": 1,
"name": "tala",
"type": "Master_Degree",
"year": "third",
"Semester": null,
"specializations": "جراحة",
}
]
},
I used to get email by doing this:
response['data']['email']
how could I get the 'type' from response['data']['student']
??