/** * 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 ProjectScopeBean */ export interface ProjectScopeBean { /** * The ID of the project that the option\'s behavior applies to. * @type {number} * @memberof ProjectScopeBean */ id?: number; /** * Defines the behavior of the option in the project.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 ProjectScopeBean */ attributes?: Array; } export declare function ProjectScopeBeanFromJSON(json: any): ProjectScopeBean; export declare function ProjectScopeBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectScopeBean; export declare function ProjectScopeBeanToJSON(value?: ProjectScopeBean): any; /** * @export * @enum {string} */ export declare enum ProjectScopeBeanAttributesEnum { NotSelectable = "notSelectable", DefaultValue = "defaultValue" }