12345678910111213141516171819202122232425262728293031 |
- // 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)
- }
|