/** * 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 { ProjectForScope } from './'; /** * The scope of an entity. Indicated for entities associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO). * @export * @interface Scope */ export interface Scope { [key: string]: object | any; /** * The project the entity has scope in. * @type {ProjectForScope} * @memberof Scope */ readonly project?: ProjectForScope; /** * The type of scope. * @type {string} * @memberof Scope */ readonly type?: ScopeTypeEnum; } export declare function ScopeFromJSON(json: any): Scope; export declare function ScopeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Scope; export declare function ScopeToJSON(value?: Scope): any; /** * @export * @enum {string} */ export declare enum ScopeTypeEnum { PROJECT = "PROJECT", TEMPLATE = "TEMPLATE" }