@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
37 lines (36 loc) • 824 B
TypeScript
import { StringLiteral } from "./string-literal";
/**
* A request to update a project.
*
* @category Model Admin
*/
export declare class UpdateProjectRequest {
/**
* Project keywords.
*/
keywords?: string[];
/**
* The path to the projects's logo.
*/
logo?: string;
/**
* The longname of a Knora project.
*/
longname?: string;
/**
* A description of a project.
*/
description?: StringLiteral[];
/**
* Exists and is true if users can add themselves to the project or group.
*/
selfjoin?: boolean;
/**
* The unique shortname of a Knora project.
*/
shortname?: string;
/**
* The status of the user / group / project. It is false if the entity has been deactivated (deleted).
*/
status?: boolean;
}