Interface IterationInterface

interface IterationInterface {
    appUrl: string;
    createdAt: Date;
    endDate: Date;
    entityType: string;
    followerIds: string[];
    groupIds: string[];
    groupMentionIds: string[];
    id: number;
    labelIds: number[];
    labels: Label[];
    memberMentionIds: string[];
    mentionIds: string[];
    name: string;
    startDate: Date;
    stats: IterationStats;
    status: IterationStatus;
    updatedAt: Date;
}

Hierarchy

  • default
    • IterationInterface

Implemented by

Properties

appUrl: string
createdAt: Date
endDate: Date
entityType: string
followerIds: string[]
groupIds: string[]
groupMentionIds: string[]
id: number
labelIds: number[]
labels: Label[]
memberMentionIds: string[]
mentionIds: string[]
name: string
startDate: Date
stats: IterationStats
status: IterationStatus
updatedAt: Date