/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ProjectDetailsAsResponse } from "../definitions/ProjectDetailsAsResponse"; export interface ScopeAsResponse { /** * The project the item has scope in. */ project?: ProjectDetailsAsResponse; /** * The type of scope. */ type?: "PROJECT" | "TEMPLATE"; [x: string]: any; } //# sourceMappingURL=ScopeAsResponse.d.ts.map