aes70
Version:
A controller library for the AES70 protocol.
24 lines (22 loc) • 472 B
JavaScript
/*
* This file has been generated.
*/
export class OcaDelayValue {
/**
* Multifield descriptor that defines a delay value element. This datatype is
* **deprecated** in AES70-2022.
* @class OcaDelayValue
*/
constructor(DelayValue, DelayUnit) {
/**
* The delay value.
* @type number
*/
this.DelayValue = DelayValue;
/**
* The unit of the delay value.
* @type OcaDelayUnit
*/
this.DelayUnit = DelayUnit;
}
}