mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-10 19:00:53 +00:00
11 lines
189 B
Go
11 lines
189 B
Go
package swagger
|
|
|
|
import (
|
|
)
|
|
|
|
type ApiResponse struct {
|
|
Code int32 `json:"code,omitempty"`
|
|
Type_ string `json:"type,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
}
|