Interface TeamInterface

interface TeamInterface {
    appUrl: string;
    archived: boolean;
    color: string;
    colorKey: string;
    description: string;
    displayIcon: string;
    entityType: string;
    id: string;
    memberIds: number[];
    mentionName: string;
    name: string;
    numEpicsStarted: number;
    numStoriesStarted: number;
    workflowIds: number[];
}

Hierarchy

  • default
    • TeamInterface

Implemented by

Properties

appUrl: string
archived: boolean
color: string
colorKey: string
description: string
displayIcon: string
entityType: string
id: string
memberIds: number[]
mentionName: string
name: string
numEpicsStarted: number
numStoriesStarted: number
workflowIds: number[]