UNPKG

aes70

Version:

A controller library for the AES70 protocol.

35 lines (29 loc) 556 B
/* * This file has been generated. */ export declare interface IOcaClassIdentification { /** * @type string */ ClassID: string; /** * Version number of the class. * @type number */ ClassVersion: number; } export declare class OcaClassIdentification implements IOcaClassIdentification { /** * @class OcaClassIdentification */ constructor(ClassID: string, ClassVersion: number); /** * @type string */ ClassID: string; /** * Version number of the class. * @type number */ ClassVersion: number; }