import { AuthenticationType } from "./AuthenticationType"; export default interface INotificationProfile { url: string; contactPerson: string; contactName: string; authenticationUrl: string; authenticationType: AuthenticationType; username?: string; password?: string; apiSecret?: string; apiKey?: string; }