@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
29 lines (28 loc) • 653 B
TypeScript
import { StringLiteral } from "./string-literal";
/**
* A request to create a group.
*
* @category Model Admin
*/
export declare class CreateGroupRequest {
/**
* Descriptions of a user group
*/
descriptions?: StringLiteral[];
/**
* 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;
}