UNPKG

@knora/api

Version:

JavaScript library that handles API requests to Knora

35 lines (34 loc) 796 B
import { StringLiteral } from "./string-literal"; /** * A request to update a project. */ 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; }