graphdb-workbench
Version:
The web application for GraphDB APIs
22 lines (21 loc) • 615 B
TypeScript
/**
* 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>);
}