libs/eventing/src/lib/model/response/publications.ts
Properties |
|
details |
details:
|
Type : literal type
|
Optional |
label |
label:
|
Type : string
|
notifications |
notifications:
|
Type : Notification[]
|
seriesHref |
seriesHref:
|
Type : string
|
import { Id, EventingEndpoint } from './common';
import { Notification } from './notifications';
export interface Publication extends Id {
label: string;
seriesHref: string;
notifications: Notification[];
details?: {
category: string;
feature: string;
phenomenon: string;
procedure: string;
unit: string;
};
}
export interface PublicationResults extends EventingEndpoint<Publication> { }