/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ProjectIdAsResponse } from "../definitions/ProjectIdAsResponse"; export interface WorkflowScopeAsResponse { project?: ProjectIdAsResponse; /** * The scope of the workflow. `GLOBAL` for company-managed projects and `PROJECT` for team-managed projects. */ type?: "PROJECT" | "GLOBAL"; } //# sourceMappingURL=WorkflowScopeAsResponse.d.ts.map