/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { PlanApprovalBeanAsResponse } from "../definitions/PlanApprovalBeanAsResponse"; import { PlanItemBeanAsResponse } from "../definitions/PlanItemBeanAsResponse"; import { RecurrenceBeanAsResponse } from "../definitions/RecurrenceBeanAsResponse"; import { IdTypePairBeanAsResponse } from "../definitions/IdTypePairBeanAsResponse"; export interface AllocationBeanAsResponse { assignee: { /** * Input would change according to specified type. */ key: string; type: "USER" | "TEAM"; userKey?: string; }; children?: Array; commitment: number; created?: string; createdBy?: string; description?: string; end: string; id?: number; /** * Include Weekends and Holidays? */ includeNonWorkingDays?: boolean; planApproval?: PlanApprovalBeanAsResponse; planItem: PlanItemBeanAsResponse; recurrence: RecurrenceBeanAsResponse; scope: IdTypePairBeanAsResponse; seconds?: number; secondsPerDay?: number; start: string; startTime?: string; updated?: string; updatedBy?: string; createdByKey?: string; } //# sourceMappingURL=AllocationBeanAsResponse.d.ts.map