// ----- this file has been automatically generated - do not edit import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base" import { DataType } from "node-opcua-variant" import { UInt64, UInt32, UInt16, UAString } from "node-opcua-basic-types" /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |FileType i=11575 | * |isAbstract |false | */ export interface UAFile_Base { size: UAProperty; writable: UAProperty; userWritable: UAProperty; openCount: UAProperty; mimeType?: UAProperty; maxByteStringLength?: UAProperty; lastModifiedTime?: UAProperty; open: UAMethod; close: UAMethod; read: UAMethod; write: UAMethod; getPosition: UAMethod; setPosition: UAMethod; } export interface UAFile extends UAObject, UAFile_Base { }