@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
29 lines (28 loc) • 569 B
TypeScript
import { StringLiteral } from "./string-literal";
/**
* A request to update a child node.
*
* @category Model Admin
*/
export declare class UpdateChildNodeRequest {
/**
* Provides a list IRI.
*/
listIri: string;
/**
* The IRI of a project.
*/
projectIri: string;
/**
* The name of the node.
*/
name?: string;
/**
* The labels attached to the enclosing object.
*/
labels?: StringLiteral[];
/**
* The comments attached to the enclosing object.
*/
comments?: StringLiteral[];
}