aes70
Version:
A controller library for the AES70 protocol.
37 lines (34 loc) • 773 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Network Interface state.
* @class OcaNetworkInterfaceState
*/
export class OcaNetworkInterfaceState extends Enum({
NotReady: 0,
Ready: 1,
Fault: 2,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaNetworkInterfaceState}
* @member NotReady
* @memberof OcaNetworkInterfaceState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaNetworkInterfaceState}
* @member Ready
* @memberof OcaNetworkInterfaceState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaNetworkInterfaceState}
* @member Fault
* @memberof OcaNetworkInterfaceState
* @static
*/