import type { UAString, UInt16 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { DTStructure } from "./dt_structure";
import type { DTUserTokenPolicy } from "./dt_user_token_policy";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |PubSubKeyPushTargetDataType                                 |
 * | isAbstract|false                                                       |
 */
export interface DTPubSubKeyPushTarget extends DTStructure {
    applicationUri: UAString;
    pushTargetFolder: UAString[];
    endpointUrl: UAString;
    securityPolicyUri: UAString;
    userTokenType: DTUserTokenPolicy;
    requestedKeyCount: UInt16;
    retryInterval: number;
    pushTargetProperties: DTKeyValuePair[];
    securityGroups: UAString[];
}
export interface UDTPubSubKeyPushTarget extends ExtensionObject, DTPubSubKeyPushTarget {
}
