9853396
1
2
3
4
5
6
7
8
9
10
11
package objects type ErrorResponse struct { Error Error `json:"error"` } type Error struct { Type string `json:"type"` Message string `json:"message"` }