@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
14 lines (13 loc) • 557 B
TypeScript
import type { BaseFilter } from "./baseFilter";
import type { AttributeQueryParameter } from "./attributeQueryParameter";
export interface ProductAttributesFilter extends BaseFilter {
/**
* Relative path to the metadata file.
*/
relativePath: 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;
}