Files
decort-golang-sdk/pkg/cloudapi/k8ci/models.go
2022-10-03 16:56:47 +03:00

16 lines
283 B
Go

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"`
}