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