aes70
Version:
A controller library for the AES70 protocol.
30 lines (27 loc) • 613 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Select mode of **OcaGrouper**: hierarchical or peer-to-peer. **Deprecated**
* in AES70-2024.
* @class OcaGrouperMode
*/
export class OcaGrouperMode extends Enum({
Hierarchical: 1,
PeerToPeer: 2,
}) {}
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaGrouperMode}
* @member Hierarchical
* @memberof OcaGrouperMode
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaGrouperMode}
* @member PeerToPeer
* @memberof OcaGrouperMode
* @static
*/