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