@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
15 lines (14 loc) • 661 B
TypeScript
import type { BaseFilter } from "./baseFilter";
import type { AttributeQueryParameter } from "./attributeQueryParameter";
export interface ArchiveLocationsFilter extends BaseFilter {
/**
* Subset of locations for which to retrieve parameters.
* This parameter has to be duplicated to specify multiple locations.
*/
parameterIds?: string | string[];
/**
* attribute(key)=value (string): one or more attributes that have to match the archive attribute.
* Attributes are passed by passing the key as an argument to the attribute() parameter and the value as parameter value.
*/
attribute?: AttributeQueryParameter;
}