UNPKG

qlik-saas-api

Version:

Interact with Qlik Sense SaaS REST API

24 lines (23 loc) 635 B
import { QlikSaaSClient } from "qlik-rest-api"; export interface INotificationItem { notificationNamePattern: string; transports: string[]; isSubscribable: boolean; presentationInfo?: { scopes: string[]; friendlyName: string; scopeFriendlyNames: object; }; subscriptionInfo?: { action: string; target?: string; resourceId?: string; resourceType: string; resourceSubType?: string; }; } export declare class Notification { #private; details: INotificationItem; constructor(saasClient: QlikSaaSClient, details?: INotificationItem); }