Emma is learning to implement structs in Go to control JSON response encoding.
She has asked you to help her add the struct tags to the bankAccount struct based on a simple JSON response of bank account data:
{
"accountID": "10001",
"accountType": "savings",
"balance": 1234.56
}
To solve this task, you don't need to delete or modify any code within the
main function. Your only objective is to add the correct struct tags to each one of the bankAccount struct fields.