/** * 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 { ContextID, JsonTypeBean, ScreenID } from './'; /** * Details of a field. * @export * @interface Field */ export interface Field { /** * The date when the value of the field last changed. * @type {Date} * @memberof Field */ lastUsed?: Date; /** * List of screens where the field is used. * @type {Array} * @memberof Field */ screens?: Array; /** * The name of the field. * @type {string} * @memberof Field */ name: string; /** * The key of the field. * @type {string} * @memberof Field */ key?: string; /** * The description of the field. * @type {string} * @memberof Field */ description?: string; /** * The id of the field. * @type {string} * @memberof Field */ id: string; /** * * @type {JsonTypeBean} * @memberof Field */ schema?: JsonTypeBean; /** * List of contexts where the field is used. * @type {Array} * @memberof Field */ contexts?: Array; } export declare function FieldFromJSON(json: any): Field; export declare function FieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): Field; export declare function FieldToJSON(value?: Field): any;