/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Scope } from './'; /** * A screen. * @export * @interface Screen */ export interface Screen { /** * The ID of the screen. * @type {number} * @memberof Screen */ readonly id?: number; /** * The scope of the screen. * @type {Scope} * @memberof Screen */ scope?: Scope; /** * The name of the screen. * @type {string} * @memberof Screen */ readonly name?: string; } export declare function ScreenFromJSON(json: any): Screen; export declare function ScreenFromJSONTyped(json: any, ignoreDiscriminator: boolean): Screen; export declare function ScreenToJSON(value?: Screen): any;