@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
12 lines (11 loc) • 488 B
TypeScript
import type { LogLevel, LogMessage, UserIdIfTheWebserviceHasBeenSetupWithAuthenticationAnyPassedUserIdWillBeOverruledByTheAuthenticatedUser } from "./forecasterNoteBody";
export interface LogDisplayLogsActionRequest {
/**
* the id of the log display
*/
logDisplayId: string;
actionId: string;
logMessage: LogMessage;
logLevel?: LogLevel;
userId?: UserIdIfTheWebserviceHasBeenSetupWithAuthenticationAnyPassedUserIdWillBeOverruledByTheAuthenticatedUser;
}