/** * 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 { JsonTypeBean, Scope } from './'; /** * Details about a field. This object has been deprecated. See [Get Fields Paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-field-search-get) to obtain details about fields. * @export * @interface FieldDeprecated */ export interface FieldDeprecated { /** * The names that can be used to reference the field in an advanced search. For more information, see [Advanced searching - fields reference](https://confluence.atlassian.com/x/gwORLQ). * @type {Array} * @memberof FieldDeprecated */ clauseNames?: Array; /** * The key of the field. * @type {string} * @memberof FieldDeprecated */ key?: string; /** * The name of the field. * @type {string} * @memberof FieldDeprecated */ name?: string; /** * The scope of the field. * @type {Scope} * @memberof FieldDeprecated */ scope?: Scope; /** * The data schema for the field. * @type {JsonTypeBean} * @memberof FieldDeprecated */ schema?: JsonTypeBean; /** * Indicates whether the content of the field can be used to order lists. * @type {boolean} * @memberof FieldDeprecated */ orderable?: boolean; /** * The ID of the field. * @type {string} * @memberof FieldDeprecated */ id?: string; /** * Indicates whether the content of the field can be searched. * @type {boolean} * @memberof FieldDeprecated */ searchable?: boolean; /** * Indicates whether the field can be used as a column on the issue navigator. * @type {boolean} * @memberof FieldDeprecated */ navigable?: boolean; /** * Indicates whether the field is a custom field. * @type {boolean} * @memberof FieldDeprecated */ custom?: boolean; } export declare function FieldDeprecatedFromJSON(json: any): FieldDeprecated; export declare function FieldDeprecatedFromJSONTyped(json: any, ignoreDiscriminator: boolean): FieldDeprecated; export declare function FieldDeprecatedToJSON(value?: FieldDeprecated): any;