/** * 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. */ /** * * @export * @interface GlobalScopeBean */ export interface GlobalScopeBean { /** * Defines the behavior of the option in the global context.If notSelectable is set, the option cannot be set as the field\'s value. This is useful for archiving an option that has previously been selected but shouldn\'t be used anymore.If defaultValue is set, the option is selected by default. * @type {Array} * @memberof GlobalScopeBean */ attributes?: Array; } export declare function GlobalScopeBeanFromJSON(json: any): GlobalScopeBean; export declare function GlobalScopeBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalScopeBean; export declare function GlobalScopeBeanToJSON(value?: GlobalScopeBean): any; /** * @export * @enum {string} */ export declare enum GlobalScopeBeanAttributesEnum { NotSelectable = "notSelectable", DefaultValue = "defaultValue" }