@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
21 lines (19 loc) • 1.08 kB
text/typescript
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UInt16, UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |LogObjectType i=19352 |
* |isAbstract |false |
*/
export interface UALogObject_Base {
getRecords: UAMethod;
maxRecords?: UAProperty<UInt32, DataType.UInt32>;
maxStorageDuration?: UAProperty<number, DataType.Double>;
minimumSeverity?: UAProperty<UInt16, DataType.UInt16>;
}
export interface UALogObject extends UAObject, UALogObject_Base {}