aes70
Version:
A controller library for the AES70 protocol.
24 lines (22 loc) • 443 B
JavaScript
/*
* This file has been generated.
*/
export class OcaConstructionParameter {
/**
* Construction parameter. Defines the value of a property that will be set at
* object construction time.
* @class OcaConstructionParameter
*/
constructor(ID, Value) {
/**
* Property ID.
* @type OcaPropertyID
*/
this.ID = ID;
/**
* Property value.
* @type Uint8Array
*/
this.Value = Value;
}
}