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