interface ProjectItem {
    atts?: {
        [key: string]: any;
    };
    createdById?: string;
    createdOn?: Date;
    id?: string;
    item?: any;
    itemId?: string;
    orgId?: string;
    orgSlug?: string;
    project?: Project;
    projectId?: string;
    readUpdatedOn?: Date;
    roles?: string[];
    typeId?: string;
    typePath?: string;
    updatedById?: string;
    updatedOn?: Date;
}

Hierarchy

  • TypeManagedEntity
    • ProjectItem

Properties

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

Type declaration

  • [key: string]: any
createdById?: string
createdOn?: Date
id?: string
item?: any
itemId?: string
orgId?: string
orgSlug?: string
project?: Project
projectId?: string
readUpdatedOn?: Date
roles?: string[]
typeId?: string
typePath?: string
updatedById?: string
updatedOn?: Date

Generated using TypeDoc