/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ScopeAsResponse } from "../definitions/ScopeAsResponse"; export interface ContextAsResponse { /** * The ID of the context. */ id?: number; /** * The name of the context. */ name?: string; /** * The scope of the context. */ scope?: ScopeAsResponse; } //# sourceMappingURL=ContextAsResponse.d.ts.map