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