@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
29 lines • 703 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;
}
//# sourceMappingURL=create-group-request.d.ts.map