/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ScopeAsResponse } from "../definitions/ScopeAsResponse"; import { JsonTypeBeanAsResponse } from "../definitions/JsonTypeBeanAsResponse"; export interface FieldDetailsAsResponse { /** * The ID of the field. */ id?: string; /** * The key of the field. */ key?: string; /** * The name of the field. */ name?: string; /** * Whether the field is a custom field. */ custom?: boolean; /** * Whether the content of the field can be used to order lists. */ orderable?: boolean; /** * Whether the field can be used as a column on the issue navigator. */ navigable?: boolean; /** * Whether the content of the field can be searched. */ searchable?: boolean; untranslatedName?: string; /** * 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). */ clauseNames?: Array; /** * The scope of the field. */ scope?: ScopeAsResponse; /** * The data schema for the field. */ schema?: JsonTypeBeanAsResponse; } //# sourceMappingURL=FieldDetailsAsResponse.d.ts.map