mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
10 lines
275 B
Go
10 lines
275 B
Go
package jenkins
|
|
|
|
type View struct {
|
|
Description string `json:"description"`
|
|
Jobs []Job `json:"jobs"`
|
|
ActiveConfigurations []Job `json:"activeConfigurations"`
|
|
Name string `json:"name"`
|
|
Url string `json:"url"`
|
|
}
|