/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { JsonTypeBeanAsResponse } from "../definitions/JsonTypeBeanAsResponse"; import { FieldLastUsedAsResponse } from "../definitions/FieldLastUsedAsResponse"; export interface FieldAsResponse { /** * The ID of the field. */ id: string; /** * The name of the field. */ name: string; /** * The schema of a field. */ schema?: JsonTypeBeanAsResponse; /** * The description of the field. */ description?: string; /** * The key of the field. */ key?: string; /** * Whether the field is locked. */ isLocked?: boolean; /** * Whether the field is shown on screen or not. */ isUnscreenable?: boolean; /** * The searcher key of the field. Returned for custom fields. */ searcherKey?: string; /** * Number of screens where the field is used. */ screensCount?: number; /** * Number of contexts where the field is used. */ contextsCount?: number; lastUsed?: FieldLastUsedAsResponse; } //# sourceMappingURL=FieldAsResponse.d.ts.map