@knora/api
Version:
JavaScript library that handles API requests to Knora
22 lines (21 loc) • 483 B
TypeScript
/**
* A group of Knora users.
*/
export declare class Group {
/**
* A description of a user group
*/
description?: string;
/**
* The name of the enclosing object.
*/
name: string;
/**
* Exists and is true if users can add themselves to the project or group.
*/
selfjoin: boolean;
/**
* The status of the user / group / project. It is false if the entity has been deactivated (deleted).
*/
status?: boolean;
}