UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

20 lines (19 loc) 433 B
/** * Creation or update of a permission. * * @category Intgernal */ export declare abstract class CreateUpdatePermission { /** * An IRI representing additional information about the permission. */ additionalInformation: string | null; /** * The name of the enclosing object. */ name: string; /** * A permission's numeric permission code. */ permissionCode: number | null; }