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