@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
11 lines (10 loc) • 494 B
TypeScript
export interface UserSettingsFilter {
/** @description Get the user settings for the specified user. If not specified, the user settings for the current authenticated user will be returned. */
userId?: string;
/** @description topic id of the user settings json file */
topicId: string;
/** @description Supported Document Format: PI_JSON, */
documentFormat?: "PI_JSON";
/** @description Document Version. Latest version is: 1.34 */
documentVersion?: string;
}