/** * 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 './'; /** * * @export * @interface IssueFieldOptionCreateBean */ export interface IssueFieldOptionCreateBean { [key: string]: object | any; /** * The option\'s name, which is displayed in Jira. * @type {string} * @memberof IssueFieldOptionCreateBean */ value: string; /** * The properties of the option as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see 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 IssueFieldOptionCreateBean */ properties?: { [key: string]: object; }; /** * * @type {IssueFieldOptionConfiguration} * @memberof IssueFieldOptionCreateBean */ config?: IssueFieldOptionConfiguration; } export declare function IssueFieldOptionCreateBeanFromJSON(json: any): IssueFieldOptionCreateBean; export declare function IssueFieldOptionCreateBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueFieldOptionCreateBean; export declare function IssueFieldOptionCreateBeanToJSON(value?: IssueFieldOptionCreateBean): any;