/**
 * Copyright (c) Spectro Cloud
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * Palette APIs - 4.7
 * OpenAPI spec version: v1
 */
import type { NotificationActionActionType } from './notificationActionActionType';
import type { NotificationActionEvents } from './notificationActionEvents';
/**
 * Describes actions for the notification
 */
export type NotificationAction = {
    /** Describes the acknowledgement status for the notification */
    ack?: boolean;
    /** Describes information related to notification action */
    actionMessage?: string;
    /** Describes action type for the notification. Possible Values [NotifyActionPacksUpdate, NotifyActionClusterProfileUpdate, NotifyActionPackRegistryUpdate, NotifyActionClusterUpdate, NotifyActionNone] */
    actionType?: NotificationActionActionType;
    /** Describes the events happened for the notifications */
    events?: NotificationActionEvents;
    /** Describes the "Done" status for the notification */
    isDone?: boolean;
    /** Describes the notification as a information */
    isInfo?: boolean;
    link?: string;
};
//# sourceMappingURL=notificationAction.d.ts.map