aes70
Version:
A controller library for the AES70 protocol.
37 lines (34 loc) • 782 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Transmission mode: unicast or multicast
* @class OcaMediaStreamCastMode
*/
export class OcaMediaStreamCastMode extends Enum({
Unknown: 0,
Unicast: 1,
Multicast: 2,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaMediaStreamCastMode}
* @member Unknown
* @memberof OcaMediaStreamCastMode
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaMediaStreamCastMode}
* @member Unicast
* @memberof OcaMediaStreamCastMode
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaMediaStreamCastMode}
* @member Multicast
* @memberof OcaMediaStreamCastMode
* @static
*/