@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
24 lines (23 loc) • 511 B
TypeScript
/**
* A group of Knora users.
*
* @category Model Admin
*/
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;
}