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