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.
15 lines
512 B
15 lines
512 B
package computeci
|
|
|
|
type ComputeCIRecord struct {
|
|
CustomFields map[string]interface{} `json:"customFields"`
|
|
Description string `json:"desc"`
|
|
Drivers []string `json:"drivers"`
|
|
GUID uint64 `json:"guid"`
|
|
ID uint64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Status string `json:"status"`
|
|
Template string `jsnn:"template"`
|
|
}
|
|
|
|
type ComputeCIList []ComputeCIRecord
|