import { Profile } from './profile'; import { RootLoginResult } from './enums'; export interface RootAuthenticationRequest { rootPassword: string; } export interface RootAuthenticationResponse { result: RootLoginResult; rootToken: string; expiresOn: string; rootProfile: Profile; }