import ADocument from '../../Storage/Mongodb/ADocument'; export declare const USER = "user"; export declare const APPLICATION = "application"; export default class Webhook extends ADocument { private name; private user; private token; private node; private topology; private application; private webhookId; private unsubscribeFailed; constructor(); getName(): string; setName(name: string): Webhook; getUser(): string; setUser(user: string): Webhook; getToken(): string; setToken(token: string): Webhook; getNode(): string; setNode(node: string): Webhook; getTopology(): string; setTopology(topology: string): Webhook; getApplication(): string; setApplication(application: string): Webhook; getWebhookId(): string; setWebhookId(webhookId: string): Webhook; getUnsubscribeFailed(): boolean; setUnsubscribeFailed(unsubscribeFailed: boolean): Webhook; }