/** * 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 { IssueFieldOptionScopeBean } from './'; /** * Details of the projects the option is available in. * @export * @interface IssueFieldOptionConfiguration */ export interface IssueFieldOptionConfiguration { /** * Defines the projects that the option is available in. If the scope is not defined, then the option is available in all projects. * @type {IssueFieldOptionScopeBean} * @memberof IssueFieldOptionConfiguration */ scope?: IssueFieldOptionScopeBean; /** * DEPRECATED * @type {Array} * @memberof IssueFieldOptionConfiguration */ attributes?: Array; } export declare function IssueFieldOptionConfigurationFromJSON(json: any): IssueFieldOptionConfiguration; export declare function IssueFieldOptionConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueFieldOptionConfiguration; export declare function IssueFieldOptionConfigurationToJSON(value?: IssueFieldOptionConfiguration): any; /** * @export * @enum {string} */ export declare enum IssueFieldOptionConfigurationAttributesEnum { NotSelectable = "notSelectable", DefaultValue = "defaultValue" }