UNPKG

graphdb-workbench

Version:
22 lines (21 loc) 615 B
/** * UserRequest class represents a request to create or update a user. */ export declare class UserRequest { password?: string; grantedAuthorities?: string[]; appSettings: { DEFAULT_VIS_GRAPH_SCHEMA?: boolean; DEFAULT_INFERENCE?: boolean; DEFAULT_SAMEAS?: boolean; IGNORE_SHARED_QUERIES?: boolean; EXECUTE_COUNT?: boolean; COOKIE_CONSENT?: boolean | { policyAccepted: boolean; statistic: boolean; thirdParty: boolean; updatedAt: number; }; }; constructor(data?: Partial<UserRequest>); }