Fix misplaced comma

This commit is contained in:
Alessio 2021-08-22 17:38:13 -07:00
parent 9eee64cca1
commit ea1264ddbd

View File

@ -145,7 +145,7 @@ type UserResponse struct {
} `json:"data"`
Errors []struct {
Message string `json:"message"`
Code int `json:"code",string`
Code int `json:"code,string"`
} `json:"errors"`
}
func (u UserResponse) ConvertToAPIUser() APIUser {