/**
 * 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 { ObjectReference } from './objectReference';
import type { ObjectMeta } from './objectMeta';
import type { EventRelatedObject } from './eventRelatedObject';
import type { EventSource } from './eventSource';
/**
 * Describes the component event details
 */
export type Event = {
    involvedObject?: ObjectReference;
    /** Describes message associated with the event */
    message?: string;
    metadata?: ObjectMeta;
    /** Describes the reason for the event */
    reason?: string;
    relatedObject?: EventRelatedObject;
    /** Describes the gravitas for the event */
    severity?: string;
    source?: EventSource;
};
//# sourceMappingURL=event.d.ts.map