2017-11-13 08:02:25 +01: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 (
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2017-11-13 08:02:25 +01:00
|
|
|
)
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// Issue
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response Issue
|
|
|
|
type swaggerResponseIssue struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Issue `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// IssueList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response IssueList
|
|
|
|
type swaggerResponseIssueList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Issue `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// Comment
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response Comment
|
|
|
|
type swaggerResponseComment struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Comment `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// CommentList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response CommentList
|
|
|
|
type swaggerResponseCommentList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Comment `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// Label
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response Label
|
|
|
|
type swaggerResponseLabel struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Label `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// LabelList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response LabelList
|
|
|
|
type swaggerResponseLabelList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Label `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// Milestone
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response Milestone
|
|
|
|
type swaggerResponseMilestone struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Milestone `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// MilestoneList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response MilestoneList
|
|
|
|
type swaggerResponseMilestoneList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Milestone `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// TrackedTime
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response TrackedTime
|
|
|
|
type swaggerResponseTrackedTime struct {
|
|
|
|
// in:body
|
|
|
|
Body api.TrackedTime `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// TrackedTimeList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response TrackedTimeList
|
|
|
|
type swaggerResponseTrackedTimeList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.TrackedTime `json:"body"`
|
|
|
|
}
|
2018-07-16 14:43:00 +02:00
|
|
|
|
|
|
|
// IssueDeadline
|
|
|
|
// swagger:response IssueDeadline
|
|
|
|
type swaggerIssueDeadline struct {
|
|
|
|
// in:body
|
|
|
|
Body api.IssueDeadline `json:"body"`
|
|
|
|
}
|
2019-12-07 23:04:19 +01:00
|
|
|
|
2020-09-11 16:48:39 +02:00
|
|
|
// IssueTemplates
|
|
|
|
// swagger:response IssueTemplates
|
|
|
|
type swaggerIssueTemplates struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.IssueTemplate `json:"body"`
|
|
|
|
}
|
|
|
|
|
2019-12-12 05:23:05 +01:00
|
|
|
// StopWatch
|
|
|
|
// swagger:response StopWatch
|
|
|
|
type swaggerResponseStopWatch struct {
|
|
|
|
// in:body
|
|
|
|
Body api.StopWatch `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopWatchList
|
|
|
|
// swagger:response StopWatchList
|
|
|
|
type swaggerResponseStopWatchList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.StopWatch `json:"body"`
|
|
|
|
}
|
|
|
|
|
2019-12-31 09:21:21 +01:00
|
|
|
// Reaction
|
|
|
|
// swagger:response Reaction
|
|
|
|
type swaggerReaction struct {
|
2019-12-07 23:04:19 +01:00
|
|
|
// in:body
|
2019-12-31 09:21:21 +01:00
|
|
|
Body api.Reaction `json:"body"`
|
2019-12-07 23:04:19 +01:00
|
|
|
}
|
|
|
|
|
2019-12-31 09:21:21 +01:00
|
|
|
// ReactionList
|
|
|
|
// swagger:response ReactionList
|
|
|
|
type swaggerReactionList struct {
|
2019-12-07 23:04:19 +01:00
|
|
|
// in:body
|
2019-12-31 09:21:21 +01:00
|
|
|
Body []api.Reaction `json:"body"`
|
2019-12-07 23:04:19 +01:00
|
|
|
}
|