import { DataType } from "node-opcua-variant"; import { UInt32, Byte, UAString } from "node-opcua-basic-types"; import { UABaseInterface, UABaseInterface_Base } from "./ua_base_interface"; import { UABaseDataVariable } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |IPriorityMappingEntryType i=24205 | * |isAbstract |true | */ export interface UAIPriorityMappingEntry_Base extends UABaseInterface_Base { mappingUri: UABaseDataVariable; priorityLabel: UABaseDataVariable; priorityValue_PCP?: UABaseDataVariable; priorityValue_DSCP?: UABaseDataVariable; } export interface UAIPriorityMappingEntry extends UABaseInterface, UAIPriorityMappingEntry_Base { }