aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 1.02 kB
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Synchronization status of a time source.
* @class OcaTimeSourceSyncStatus
*/
export class OcaTimeSourceSyncStatus extends Enum({
Undefined: 0,
Unsynchronized: 1,
Synchronizing: 2,
Synchronized: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaTimeSourceSyncStatus}
* @member Undefined
* @memberof OcaTimeSourceSyncStatus
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaTimeSourceSyncStatus}
* @member Unsynchronized
* @memberof OcaTimeSourceSyncStatus
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaTimeSourceSyncStatus}
* @member Synchronizing
* @memberof OcaTimeSourceSyncStatus
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaTimeSourceSyncStatus}
* @member Synchronized
* @memberof OcaTimeSourceSyncStatus
* @static
*/