forked from loafle/openapi-generator-original
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"`
|
|
}
|