aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 849 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Library volume access modes
* @class OcaLibAccess
*/
export class OcaLibAccess extends Enum({
None: 0,
ReadOnly: 1,
ReadExpand: 2,
Full: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaLibAccess}
* @member None
* @memberof OcaLibAccess
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaLibAccess}
* @member ReadOnly
* @memberof OcaLibAccess
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaLibAccess}
* @member ReadExpand
* @memberof OcaLibAccess
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaLibAccess}
* @member Full
* @memberof OcaLibAccess
* @static
*/