mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-17 07:56:38 +08:00
14 lines
258 B
Go
14 lines
258 B
Go
package dto
|
|
|
|
type OpenAIError struct {
|
|
Message string `json:"message"`
|
|
Type string `json:"type"`
|
|
Param string `json:"param"`
|
|
Code any `json:"code"`
|
|
}
|
|
|
|
type OpenAIErrorWithStatusCode struct {
|
|
OpenAIError
|
|
StatusCode int `json:"status_code"`
|
|
}
|