Interface IRole

interface IRole {
    createdAt?: string;
    id?: string;
    isImmutable?: boolean;
    name: string;
    organizationId?: string;
    policies: Policies;
    tags: ITags;
    updatedAt?: string;
}

Hierarchy

  • ITaggedEntity
    • IRole

Properties

createdAt?: string
id?: string
isImmutable?: boolean
name: string
organizationId?: string
policies: Policies
tags: ITags
updatedAt?: string

Generated using TypeDoc