gf/protocol/goai/goai_response.go

30 lines
796 B
Go
Raw Normal View History

2021-10-02 14:52:28 +08:00
package goai
import (
"fmt"
"github.com/gogf/gf/internal/json"
)
// Response is specified by OpenAPI/Swagger 3.0 standard.
type Response struct {
Description string `json:"description" yaml:"description"`
Headers Headers `json:"headers,omitempty" yaml:"headers,omitempty"`
Content Content `json:"content,omitempty" yaml:"content,omitempty"`
Links Links `json:"links,omitempty" yaml:"links,omitempty"`
}
// Responses is specified by OpenAPI/Swagger 3.0 standard.
type Responses map[string]ResponseRef
type ResponseRef struct {
Ref string
Value *Response
}
func (r ResponseRef) MarshalJSON() ([]byte, error) {
if r.Ref != "" {
return []byte(fmt.Sprintf(`{"$ref":"#/components/schemas/%s"}`, r.Ref)), nil
}
return json.Marshal(r.Value)
}