palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
28 lines • 876 B
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
import type { NotificationEventMeta } from './notificationEventMeta';
import type { NotificationEventType } from './notificationEventType';
/**
* Describes notification event details
*/
export type NotificationEvent = {
/** Describes component of notification event */
component?: string;
/** Describes notification event digest */
digest?: string;
/** Describes a information for the notification event */
message?: string;
/** Describes a event messages with meta digest as the key */
meta?: NotificationEventMeta;
/** Describes notification event type */
type?: NotificationEventType;
};
//# sourceMappingURL=notificationEvent.d.ts.map