/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { RootIssueBeanAsResponse } from "../definitions/RootIssueBeanAsResponse"; export interface PlanItemBeanAsResponse { accountKey?: string; avatarUrls?: { [x: string]: string; }; description?: string; epicIssue?: RootIssueBeanAsResponse; epicKey?: string; epicName?: string; estimatedRemainingSeconds?: number; iconUrl?: string; id: number; key?: string; name?: string; originalEstimateSeconds?: number; parentIssue?: RootIssueBeanAsResponse; parentKey?: string; planItemUrl?: string; projectColor?: string; projectId?: number; projectKey?: string; summary?: string; iconName?: string; components?: Array; versions?: Array; isResolved?: boolean; issueStatus?: { name?: string; color?: string; }; type: "COMPONENT" | "EPIC" | "ISSUE" | "PROJECT" | "SPRINT" | "VERSION" | "ISSUE" | "EPIC" | "PROJECT" | "COMPONENT" | "SPRINT" | "VERSION"; } //# sourceMappingURL=PlanItemBeanAsResponse.d.ts.map