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

32 lines
967 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
// Collection A Collection of ComputerSystem resource instances.
type Collection struct {
// context
OdataContext string `json:"@odata.context,omitempty"`
// etag
OdataEtag string `json:"@odata.etag,omitempty"`
// id
OdataId string `json:"@odata.id"`
// type
OdataType string `json:"@odata.type"`
// description
Description *string `json:"Description,omitempty"`
// Contains the members of this collection.
Members []IdRef `json:"Members"`
// The number of items in a collection.
MembersodataCount int32 `json:"Members@odata.count,omitempty"`
// The URI to the resource containing the next set of partial members.
MembersodataNextLink string `json:"Members@odata.nextLink,omitempty"`
// The name of the resource.
Name string `json:"Name"`
}