UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

19 lines (18 loc) 952 B
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |TemporaryFileTransferType i=15744 | * |isAbstract |false | */ export interface UATemporaryFileTransfer_Base { clientProcessingTimeout: UAProperty<number, DataType.Double>; generateFileForRead: UAMethod; generateFileForWrite: UAMethod; closeAndCommit: UAMethod; } export interface UATemporaryFileTransfer extends UAObject, UATemporaryFileTransfer_Base { }