/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { PlanLogLocationBeanAsResponse } from "../definitions/PlanLogLocationBeanAsResponse"; import { PlanApprovalBeanAsResponse } from "../definitions/PlanApprovalBeanAsResponse"; import { PlanItemBeanAsResponse } from "../definitions/PlanItemBeanAsResponse"; export interface PlanLogBeanAsResponse { allocationId?: number; assignee?: string; assigneeType?: string; dateCreated?: string; dateUpdated?: string; day?: string; includeNonWorkingDays?: boolean; location?: PlanLogLocationBeanAsResponse; parent?: PlanLogBeanAsResponse; planApproval?: PlanApprovalBeanAsResponse; planCreator?: string; planDescription?: string; planEnd?: string; planItemId?: number; planItemInfo?: PlanItemBeanAsResponse; planStart?: string; planStartTime?: string; secondsPerDay?: number; timePlannedSeconds?: number; planItemType?: string; } //# sourceMappingURL=PlanLogBeanAsResponse.d.ts.map