interface SpaceRole {
    description?: string;
    id?: string;
    name?: string;
    spacePermissions?: string[];
    type?: RoleType;
}

Hierarchy

  • Record<string, unknown>
    • SpaceRole

Properties

description?: string

The description for the space role’s usage.

id?: string

The identifier for the space role.

name?: string

The name for the space role.

spacePermissions?: string[]

The space permissions the space role is comprised of.

type?: RoleType

The role type.