go-redfish/client/model_root.go
Dmitry Ukov 279a313a81 Regenerated code using openapi-generator 4.2.2
Change-Id: I73c4f1f19f6ef71d9cad74d5df0d611d5ca687a9
2020-01-10 18:53:05 +00:00

29 lines
805 B
Go

/*
* Redfish OAPI specification
*
* Partial Redfish OAPI specification for a limited client
*
* API version: 0.0.1
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package client
// Root Root redfish path.
type Root struct {
// The name of the resource.
Id string `json:"Id,omitempty"`
// The name of the resource.
Name string `json:"Name"`
// redfish version
RedfishVersion string `json:"RedfishVersion,omitempty"`
UUID string `json:"UUID,omitempty"`
// The type of a resource.
OdataType string `json:"@odata.type"`
// The unique identifier for a resource.
OdataId string `json:"@odata.id"`
// redfish copyright
RedfishCopyright string `json:"@Redfish.Copyright,omitempty"`
Systems IdRef `json:"Systems,omitempty"`
Managers IdRef `json:"Managers,omitempty"`
}