@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
15 lines (14 loc) • 478 B
TypeScript
import type { BaseFilter } from "./baseFilter";
export interface LocationsFilter extends BaseFilter {
filterId?: string;
showAttributes?: boolean;
showParentLocations?: boolean;
showThresholds?: boolean;
showTimeSeriesInfo?: boolean;
includeLocationRelations?: boolean;
includeTimeDependency?: boolean;
includeIconNames?: boolean;
attributeIds?: string | string[];
locationIds?: string | string[];
parameterIds?: string | string[];
}