interface Workspace {
    atts?: {
        [key: string]: any;
    };
    createdBy?: any;
    createdById?: string;
    createdOn?: Date;
    description?: string;
    id: string;
    isArchived?: boolean;
    name: string;
    orgId?: string;
    orgSlug?: string;
    parentId?: string;
    parentWorkspace?: any;
    policyOwner: boolean;
    project?: any;
    projectId?: string;
    readUpdatedOn?: Date;
    rootWorkspace?: any;
    rootWorkspaceId?: string;
    rootWorkspaceType?: WorkspaceType;
    thumbnail?: string;
    typeId?: string;
    typePath?: string;
    updatedBy?: any;
    updatedById?: string;
    updatedOn?: Date;
    workspacePrincipals?: WorkspacePrincipal[];
    workspaceType?: WorkspaceType;
}

Hierarchy

  • TypeManagedEntity
    • Workspace

Properties

atts?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
createdBy?: any
createdById?: string
createdOn?: Date
description?: string
id: string
isArchived?: boolean
name: string
orgId?: string
orgSlug?: string
parentId?: string
parentWorkspace?: any
policyOwner: boolean
project?: any
projectId?: string
readUpdatedOn?: Date
rootWorkspace?: any
rootWorkspaceId?: string
rootWorkspaceType?: WorkspaceType
thumbnail?: string
typeId?: string
typePath?: string
updatedBy?: any
updatedById?: string
updatedOn?: Date
workspacePrincipals?: WorkspacePrincipal[]
workspaceType?: WorkspaceType

Generated using TypeDoc