aes70
Version:
A controller library for the AES70 protocol.
46 lines (43 loc) • 954 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Enumeration defining the power states that OCA devices can be in. The state
* is returned by the device's Power Manager on request.
* @class OcaPowerState
*/
export class OcaPowerState extends Enum({
None: 0,
Working: 1,
Standby: 2,
Off: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaPowerState}
* @member None
* @memberof OcaPowerState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaPowerState}
* @member Working
* @memberof OcaPowerState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaPowerState}
* @member Standby
* @memberof OcaPowerState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaPowerState}
* @member Off
* @memberof OcaPowerState
* @static
*/