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