libs/core/src/lib/api-communication/model/internal/filter.ts
Properties |
Optional category |
Type : string
|
Optional expanded |
Type : boolean
|
Optional feature |
Type : string
|
Optional lang |
Type : string
|
Optional offering |
Type : string
|
Optional phenomenon |
Type : string
|
Optional platform |
Type : string
|
Optional platformType |
Type : PlatformTypes
|
Optional procedure |
Type : string
|
Optional service |
Type : string
|
Optional type |
Type : DatasetType
|
import { PlatformTypes } from './../../../model/dataset-api/enums';
import { Timespan } from './../../../model/internal/timeInterval';
import { DatasetType } from './dataset';
export class HelgolandParameterFilter {
phenomenon?: string;
service?: string;
category?: string;
offering?: string;
procedure?: string;
feature?: string;
platform?: string;
platformType?: PlatformTypes;
type?: DatasetType;
expanded?: boolean;
lang?: string;
}
export interface HelgolandCsvExportLinkParams {
timespan?: Timespan;
generalize?: boolean;
lang?: string;
zip?: boolean;
}