graphdb-workbench
Version:
The web application for GraphDB APIs
15 lines (14 loc) • 446 B
TypeScript
import { Model } from '../common';
import { AuthorityList } from './authority-list';
import { AppSettings } from './app-settings';
/**
* Represents an authenticated user in the system
*/
export declare class AuthenticatedUser extends Model<AuthenticatedUser> {
external: boolean;
username: string;
password: string;
authorities: AuthorityList;
appSettings: AppSettings;
constructor(data?: Partial<AuthenticatedUser>);
}