import type { UAMethod, UAObject } from "node-opcua-address-space-base";

import type { UAPubSubKeyPushTargetFolder } from "./ua_pub_sub_key_push_target_folder";
import type { UASecurityGroupFolder } from "./ua_security_group_folder";

// ----- this file has been automatically generated - do not edit

/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |ObjectType                                                  |
 * |typedDefinition |PubSubKeyServiceType i=15906                                |
 * |isAbstract      |false                                                       |
 */
export interface UAPubSubKeyService_Base {
    getSecurityKeys?: UAMethod;
    getSecurityGroup?: UAMethod;
    securityGroups?: UASecurityGroupFolder;
    keyPushTargets?: UAPubSubKeyPushTargetFolder;
}
export interface UAPubSubKeyService extends UAObject, UAPubSubKeyService_Base {}