import { ExtensionObject } from "node-opcua-extension-object"; import { DTStructure } from "./dt_structure"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |ServiceCertificateDataType | * | isAbstract|false | */ export interface DTServiceCertificate extends DTStructure { certificate: Buffer; issuers: Buffer[]; validFrom: Date; validTo: Date; } export interface UDTServiceCertificate extends ExtensionObject, DTServiceCertificate { }