This object represents a list of space permissions for custom content type for an individual user. Permissions consist of* a subjects object and a list with at least one operation object.

interface AddCustomContentPermissions {
    operations: {
        access: boolean;
        key: string;
        target: string;
    }[];
    spaceKey: string;
    subject: PermissionSubject;
}

Hierarchy (view full)

Properties

operations: {
    access: boolean;
    key: string;
    target: string;
}[]

Type declaration

  • access: boolean

    Grant or restrict access

  • key: string

    The operation type

  • target: string

    The custom content type

spaceKey: string

The key of the space to be queried for its content.

Generated using TypeDoc v0.25.12