2020-02-29 07:19:32 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-02-29 07:19:32 +01:00
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OAuth2Application
|
|
|
|
// swagger:response OAuth2Application
|
|
|
|
type swaggerResponseOAuth2Application struct {
|
|
|
|
// in:body
|
|
|
|
Body api.OAuth2Application `json:"body"`
|
|
|
|
}
|
2021-08-01 22:44:15 +02:00
|
|
|
|
|
|
|
// AccessToken represents an API access token.
|
|
|
|
// swagger:response AccessToken
|
|
|
|
type swaggerResponseAccessToken struct {
|
|
|
|
// in:body
|
|
|
|
Body api.AccessToken `json:"body"`
|
|
|
|
}
|