mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 11:18:02 +08:00
32 lines
739 B
Go
32 lines
739 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/v2/internal/json"
|
|
)
|
|
|
|
// Header is specified by OpenAPI/Swagger 3.0 standard.
|
|
// See https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.0.md#headerObject
|
|
type Header struct {
|
|
Parameter
|
|
}
|
|
|
|
type Headers map[string]HeaderRef
|
|
|
|
type HeaderRef struct {
|
|
Ref string
|
|
Value *Header
|
|
}
|
|
|
|
func (r HeaderRef) MarshalJSON() ([]byte, error) {
|
|
if r.Ref != "" {
|
|
return formatRefToBytes(r.Ref), nil
|
|
}
|
|
return json.Marshal(r.Value)
|
|
}
|