aes70
Version:
A controller library for the AES70 protocol.
29 lines (27 loc) • 585 B
JavaScript
/*
* This file has been generated.
*/
export class OcaModelGUID {
/**
* 64 bit device type GUID.
* @class OcaModelGUID
*/
constructor(Reserved, MfrCode, ModelCode) {
/**
* 8 reserved bits.
* @type Uint8Array
*/
this.Reserved = Reserved;
/**
* IEEE Manufacturer code. Unique worldwide.
* @type Uint8Array
*/
this.MfrCode = MfrCode;
/**
* Model code. Unique within the given manufacturer's products. May be set
* freely by the manufacturer.
* @type Uint8Array
*/
this.ModelCode = ModelCode;
}
}