/** * 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. */ /** * A screen tab. * @export * @interface ScreenableTab */ export interface ScreenableTab { /** * The name of the screen tab. Required on create and update. The maximum length is 255 characters. * @type {string} * @memberof ScreenableTab */ name: string; /** * The ID of the screen tab. * @type {number} * @memberof ScreenableTab */ readonly id?: number; } export declare function ScreenableTabFromJSON(json: any): ScreenableTab; export declare function ScreenableTabFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenableTab; export declare function ScreenableTabToJSON(value?: ScreenableTab): any;