/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { NotificationSchemeEvent } from './notification'; export interface NotificationScheme { expand?: string; id?: number; self?: string; name?: string; description?: string; notificationSchemeEvents?: NotificationSchemeEvent[]; } export interface NotificationSchemes { self?: string; nextPage?: string; maxResults: number; startAt: number; total?: number; isLast?: boolean; values?: NotificationScheme[]; } //# sourceMappingURL=notification_scheme.d.ts.map