-
-
-
-
-
- package structs
-
-
-
- type Label struct {
- ID int64 `json:"id"`
- Name string `json:"name"`
-
- Color string `json:"color"`
- Description string `json:"description"`
- URL string `json:"url"`
- }
-
-
- type CreateLabelOption struct {
-
- Name string `json:"name" binding:"Required"`
-
-
- Color string `json:"color" binding:"Required;Size(7)"`
- Description string `json:"description"`
- }
-
-
- type EditLabelOption struct {
- Name *string `json:"name"`
- Color *string `json:"color"`
- Description *string `json:"description"`
- }
-
-
- type IssueLabelsOption struct {
-
- Labels []int64 `json:"labels"`
- }
|