import { NotificationType } from './notification'; export interface SaveNotificationCategoryRequest { name: string; description?: string; /** * @maxItems 2 */ notificationIds: [] | [NotificationReference] | [NotificationReference, NotificationReference]; stackResourceId?: string; } export interface NotificationCategory { categoryId: string; name: string; description?: string; /** * @maxItems 2 */ notificationIds?: [] | [NotificationReference] | [NotificationReference, NotificationReference]; stackResourceId?: string; } export interface NotificationReference { notificationId: string; type: NotificationType; sendCount?: number; [k: string]: unknown; } export type UpdateNotificationCategoryRequest = NotificationCategory; export type CreateNotificationCategoryRequest = SaveNotificationCategoryRequest; //# sourceMappingURL=category.d.ts.map