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

21 lines
483 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
// IndicatorLed the model 'IndicatorLed'
type IndicatorLed string
// List of IndicatorLED
const (
INDICATORLED_UNKNOWN IndicatorLed = "Unknown"
INDICATORLED_LIT IndicatorLed = "Lit"
INDICATORLED_BLINKING IndicatorLed = "Blinking"
INDICATORLED_OFF IndicatorLed = "Off"
)