mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 11:18:02 +08:00
31 lines
858 B
Go
31 lines
858 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package goai
|
|
|
|
import (
|
|
"github.com/gogf/gf/internal/json"
|
|
)
|
|
|
|
// RequestBody is specified by OpenAPI/Swagger 3.0 standard.
|
|
type RequestBody struct {
|
|
Description string `json:"description,omitempty" yaml:"description,omitempty"`
|
|
Required bool `json:"required,omitempty" yaml:"required,omitempty"`
|
|
Content Content `json:"content,omitempty" yaml:"content,omitempty"`
|
|
}
|
|
|
|
type RequestBodyRef struct {
|
|
Ref string
|
|
Value *RequestBody
|
|
}
|
|
|
|
func (r RequestBodyRef) MarshalJSON() ([]byte, error) {
|
|
if r.Ref != "" {
|
|
return formatRefToBytes(r.Ref), nil
|
|
}
|
|
return json.Marshal(r.Value)
|
|
}
|