Files
openapi-generator/samples/client/petstore/go/api_response.go
2016-04-16 17:00:46 -07:00

15 lines
205 B
Go

package swagger
import (
)
type ApiResponse struct {
Code int32 `json:"code,omitempty"`
Type_ string `json:"type,omitempty"`
Message string `json:"message,omitempty"`
}