-
-
-
-
- package swagger
-
- import (
- api "code.gitea.io/gitea/modules/structs"
- )
-
-
-
- type swaggerResponseIssue struct {
-
- Body api.Issue `json:"body"`
- }
-
-
-
- type swaggerResponseIssueList struct {
-
- Body []api.Issue `json:"body"`
- }
-
-
-
- type swaggerResponseComment struct {
-
- Body api.Comment `json:"body"`
- }
-
-
-
- type swaggerResponseCommentList struct {
-
- Body []api.Comment `json:"body"`
- }
-
-
-
- type swaggerResponseLabel struct {
-
- Body api.Label `json:"body"`
- }
-
-
-
- type swaggerResponseLabelList struct {
-
- Body []api.Label `json:"body"`
- }
-
-
-
- type swaggerResponseMilestone struct {
-
- Body api.Milestone `json:"body"`
- }
-
-
-
- type swaggerResponseMilestoneList struct {
-
- Body []api.Milestone `json:"body"`
- }
-
-
-
- type swaggerResponseTrackedTime struct {
-
- Body api.TrackedTime `json:"body"`
- }
-
-
-
- type swaggerResponseTrackedTimeList struct {
-
- Body []api.TrackedTime `json:"body"`
- }
-
-
-
- type swaggerIssueDeadline struct {
-
- Body api.IssueDeadline `json:"body"`
- }
|