11 lines
242 B
Go
11 lines
242 B
Go
package gogpt
|
|
|
|
type ErrorResponse struct {
|
|
Error *struct {
|
|
Code *int `json:"code,omitempty"`
|
|
Message string `json:"message"`
|
|
Param *string `json:"param,omitempty"`
|
|
Type string `json:"type"`
|
|
} `json:"error,omitempty"`
|
|
}
|