Interface StoryInterface

interface StoryInterface {
    appUrl: string;
    archived: boolean;
    blocked: boolean;
    blocker: boolean;
    branches: object[];
    comments: StoryCommentInterface[];
    commits: object[];
    completed: boolean;
    completedAt: null | Date;
    completedAtOverride: null | Date;
    createdAt: Date;
    customFields: object[];
    cycleTime: (() => number);
    deadline: null | Date;
    description: string;
    entityType: string;
    epicId: null | number;
    estimate: null | number;
    externalId: null | string;
    externalLinks: string[];
    files: object[];
    followerIds: string[];
    groupId: null | string;
    groupMentionIds: string[];
    id: number;
    iterationId: null | number;
    labelIds: number[];
    labels: object[];
    leadTime: number;
    linkedFiles: object[];
    memberMentionIds: string[];
    mentionIds: string[];
    movedAt: null | Date;
    name: string;
    ownerIds: string[];
    position: number;
    previousIterationIds: number[];
    projectId: null | number;
    pullRequests: PullRequestInterface[];
    requestedById: string;
    started: boolean;
    startedAt: null | Date;
    startedAtOverride: null | Date;
    stats: object;
    storyLinks: object[];
    storyTemplateId: null | string;
    storyType: string;
    syncedItem: object;
    tasks: default[];
    unresolvedBlockerComments: number[];
    updatedAt: null | Date;
    workflowId: number;
    workflowStateId: number;
}

Hierarchy

  • default
    • StoryInterface

Implemented by

Properties

appUrl: string
archived: boolean
blocked: boolean
blocker: boolean
branches: object[]
commits: object[]
completed: boolean
completedAt: null | Date
completedAtOverride: null | Date
createdAt: Date
customFields: object[]
cycleTime: (() => number)

Type declaration

    • (): number
    • Returns number

deadline: null | Date
description: string
entityType: string
epicId: null | number
estimate: null | number
externalId: null | string
externalLinks: string[]
files: object[]
followerIds: string[]
groupId: null | string
groupMentionIds: string[]
id: number
iterationId: null | number
labelIds: number[]
labels: object[]
leadTime: number
linkedFiles: object[]
memberMentionIds: string[]
mentionIds: string[]
movedAt: null | Date
name: string
ownerIds: string[]
position: number
previousIterationIds: number[]
projectId: null | number
pullRequests: PullRequestInterface[]
requestedById: string
started: boolean
startedAt: null | Date
startedAtOverride: null | Date
stats: object
storyLinks: object[]
storyTemplateId: null | string
storyType: string
syncedItem: object
tasks: default[]
unresolvedBlockerComments: number[]
updatedAt: null | Date
workflowId: number
workflowStateId: number