2017-11-13 10:02:25 +03:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package swagger
import (
api "code.gitea.io/sdk/gitea"
)
2018-05-31 14:13:55 +03:00
// Repository
2017-11-13 10:02:25 +03:00
// swagger:response Repository
type swaggerResponseRepository struct {
// in:body
Body api . Repository ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// RepositoryList
2017-11-13 10:02:25 +03:00
// swagger:response RepositoryList
type swaggerResponseRepositoryList struct {
// in:body
Body [ ] api . Repository ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// Branch
2017-11-13 10:02:25 +03:00
// swagger:response Branch
type swaggerResponseBranch struct {
// in:body
Body api . Branch ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// BranchList
2017-11-13 10:02:25 +03:00
// swagger:response BranchList
type swaggerResponseBranchList struct {
// in:body
Body [ ] api . Branch ` json:"body" `
}
2019-02-07 15:00:52 +03:00
// TagList
// swagger:response TagList
type swaggerReponseTagList struct {
// in:body
Body [ ] api . Tag ` json:"body" `
}
2018-11-28 00:52:20 +03:00
// Reference
// swagger:response Reference
type swaggerResponseReference struct {
// in:body
Body api . Reference ` json:"body" `
}
// ReferenceList
// swagger:response ReferenceList
type swaggerResponseReferenceList struct {
// in:body
Body [ ] api . Reference ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// Hook
2017-11-13 10:02:25 +03:00
// swagger:response Hook
type swaggerResponseHook struct {
// in:body
Body [ ] api . Branch ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// HookList
2017-11-13 10:02:25 +03:00
// swagger:response HookList
type swaggerResponseHookList struct {
// in:body
Body [ ] api . Branch ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// Release
2017-11-13 10:02:25 +03:00
// swagger:response Release
type swaggerResponseRelease struct {
// in:body
Body api . Release ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// ReleaseList
2017-11-13 10:02:25 +03:00
// swagger:response ReleaseList
type swaggerResponseReleaseList struct {
// in:body
Body [ ] api . Release ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// PullRequest
2017-11-13 10:02:25 +03:00
// swagger:response PullRequest
type swaggerResponsePullRequest struct {
// in:body
Body api . PullRequest ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// PullRequestList
2017-11-13 10:02:25 +03:00
// swagger:response PullRequestList
type swaggerResponsePullRequestList struct {
// in:body
Body [ ] api . PullRequest ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// Status
2017-11-13 10:02:25 +03:00
// swagger:response Status
type swaggerResponseStatus struct {
// in:body
Body api . Status ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// StatusList
2017-11-13 10:02:25 +03:00
// swagger:response StatusList
type swaggerResponseStatusList struct {
// in:body
Body [ ] api . Status ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// WatchInfo
2017-11-13 10:02:25 +03:00
// swagger:response WatchInfo
type swaggerResponseWatchInfo struct {
// in:body
Body api . WatchInfo ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// SearchResults
2017-11-13 10:02:25 +03:00
// swagger:response SearchResults
type swaggerResponseSearchResults struct {
2018-06-12 17:59:22 +03:00
// in:body
2017-11-13 10:02:25 +03:00
Body api . SearchResults ` json:"body" `
}
2018-03-06 04:22:16 +03:00
2018-05-31 14:13:55 +03:00
// AttachmentList
2018-03-06 04:22:16 +03:00
// swagger:response AttachmentList
type swaggerResponseAttachmentList struct {
//in: body
Body [ ] api . Attachment ` json:"body" `
}
2018-05-31 14:13:55 +03:00
// Attachment
2018-03-06 04:22:16 +03:00
// swagger:response Attachment
type swaggerResponseAttachment struct {
//in: body
Body api . Attachment ` json:"body" `
}
2019-01-24 21:13:30 +03:00
// GitTreeResponse
// swagger:response GitTreeResponse
type swaggerGitTreeResponse struct {
//in: body
Body api . GitTreeResponse ` json:"body" `
}
2019-02-03 06:35:17 +03:00
// Commit
// swagger:response Commit
type swaggerCommit struct {
//in: body
Body api . Commit ` json:"body" `
}