import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { NodeId } from "node-opcua-nodeid"; import { UInt16 } from "node-opcua-basic-types"; import { DTStructure } from "./dt_structure"; import { DTKeyValuePair } from "./dt_key_value_pair"; import { UABaseDataVariable } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |SerializationEntityType i=19824 | * |isAbstract |false | */ export interface UASerializationEntity_Base { serializedData: UABaseDataVariable; includeReferenceTypes?: UAProperty; excludeReferenceTypes?: UAProperty; serializationDepth?: UAProperty; considerSubElementSerializationProperties?: UAProperty; customMetaDataProperties?: UAProperty; customMetaDataRef?: UAProperty; includeStatus?: UAProperty; includeSourceTimestamp?: UAProperty; includeDictionaryReference?: UAProperty; configureSerialization?: UAMethod; } export interface UASerializationEntity extends UAObject, UASerializationEntity_Base { }