2020-02-29 01:19:32 -05:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-02-29 01:19:32 -05: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 16:44:15 -04:00
|
|
|
|
|
|
|
// AccessToken represents an API access token.
|
|
|
|
// swagger:response AccessToken
|
|
|
|
type swaggerResponseAccessToken struct {
|
|
|
|
// in:body
|
|
|
|
Body api.AccessToken `json:"body"`
|
|
|
|
}
|