go-redfish/client/model_collection.go
2019-09-09 14:54:37 +03:00

33 lines
957 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
// 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"`
}