import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UInt16, UAString } from "node-opcua-basic-types"; import { DTUserTokenPolicy } from "./dt_user_token_policy"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubKeyPushTargetType i=25337 | * |isAbstract |false | */ export interface UAPubSubKeyPushTarget_Base { applicationUri: UAProperty; endpointUrl: UAProperty; securityPolicyUri: UAProperty; userTokenType: UAProperty; requestedKeyCount: UAProperty; retryInterval: UAProperty; lastPushExecutionTime: UAProperty; lastPushErrorTime: UAProperty; connectSecurityGroups: UAMethod; disconnectSecurityGroups: UAMethod; triggerKeyUpdate: UAMethod; } export interface UAPubSubKeyPushTarget extends UAObject, UAPubSubKeyPushTarget_Base { }