/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { WorkflowStatusUpdate } from "../definitions/WorkflowStatusUpdate"; import { WorkflowUpdate } from "../definitions/WorkflowUpdate"; export interface WorkflowUpdateRequest { /** * The statuses to associate with the workflows. */ statuses?: Array; /** * The details of the workflows to update. */ workflows?: Array; } //# sourceMappingURL=WorkflowUpdateRequest.d.ts.map