summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/swagger/quota.go
blob: 35e633c39da297e8eb7a99107923f67dac0cb540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package swagger

import (
	api "code.gitea.io/gitea/modules/structs"
)

// QuotaInfo
// swagger:response QuotaInfo
type swaggerResponseQuotaInfo struct {
	// in:body
	Body api.QuotaInfo `json:"body"`
}

// QuotaRuleInfoList
// swagger:response QuotaRuleInfoList
type swaggerResponseQuotaRuleInfoList struct {
	// in:body
	Body []api.QuotaRuleInfo `json:"body"`
}

// QuotaRuleInfo
// swagger:response QuotaRuleInfo
type swaggerResponseQuotaRuleInfo struct {
	// in:body
	Body api.QuotaRuleInfo `json:"body"`
}

// QuotaUsedAttachmentList
// swagger:response QuotaUsedAttachmentList
type swaggerQuotaUsedAttachmentList struct {
	// in:body
	Body api.QuotaUsedAttachmentList `json:"body"`
}

// QuotaUsedPackageList
// swagger:response QuotaUsedPackageList
type swaggerQuotaUsedPackageList struct {
	// in:body
	Body api.QuotaUsedPackageList `json:"body"`
}

// QuotaUsedArtifactList
// swagger:response QuotaUsedArtifactList
type swaggerQuotaUsedArtifactList struct {
	// in:body
	Body api.QuotaUsedArtifactList `json:"body"`
}

// QuotaGroup
// swagger:response QuotaGroup
type swaggerResponseQuotaGroup struct {
	// in:body
	Body api.QuotaGroup `json:"body"`
}

// QuotaGroupList
// swagger:response QuotaGroupList
type swaggerResponseQuotaGroupList struct {
	// in:body
	Body api.QuotaGroupList `json:"body"`
}