UNPKG

@knora/api

Version:

JavaScript library that handles API requests to Knora

26 lines (25 loc) 566 B
/** * A request to create a group. */ export declare class CreateGroupRequest { /** * A description of a user group */ description?: string; /** * The name of the enclosing object. */ name: string; /** * The IRI of a project. */ project: 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; }