You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
decort-golang-sdk/k8ci/models.go

16 lines
298 B

package k8ci
type K8CIItem struct {
CreatedTime uint64 `json:"createdTime"`
K8CIRecord
}
type K8CIList []K8CIItem
type K8CIRecord struct {
Description string `json:"desc"`
ID uint64 `json:"id"`
Name string `json:"name"`
Version string `json:"version"`
}