/** * 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 { IssueFieldOptionConfiguration } from './'; /** * Details of the options for a select list issue field. * @export * @interface IssueFieldOption */ export interface IssueFieldOption { /** * The unique identifier for the option. This is only unique within the select field\'s set of options. * @type {number} * @memberof IssueFieldOption */ id: number; /** * * @type {IssueFieldOptionConfiguration} * @memberof IssueFieldOption */ config?: IssueFieldOptionConfiguration; /** * The properties of the object, as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see [Issue Field Option Property Index](https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/)) are defined in the descriptor for the issue field module. * @type {{ [key: string]: object; }} * @memberof IssueFieldOption */ properties?: { [key: string]: object; }; /** * The option\'s name, which is displayed in Jira. * @type {string} * @memberof IssueFieldOption */ value: string; } export declare function IssueFieldOptionFromJSON(json: any): IssueFieldOption; export declare function IssueFieldOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueFieldOption; export declare function IssueFieldOptionToJSON(value?: IssueFieldOption): any;