/** * 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 { AvatarUrlsBean, UpdatedProjectCategory } from './'; /** * Details about a next-gen project. * @export * @interface ProjectForScope */ export interface ProjectForScope { /** * The URLs of the project\'s avatars. * @type {AvatarUrlsBean} * @memberof ProjectForScope */ readonly avatarUrls?: AvatarUrlsBean; /** * The URL of the project details. * @type {string} * @memberof ProjectForScope */ readonly self?: string; /** * The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project. * @type {string} * @memberof ProjectForScope */ readonly projectTypeKey?: ProjectForScopeProjectTypeKeyEnum; /** * Whether or not the project is simplified. * @type {boolean} * @memberof ProjectForScope */ readonly simplified?: boolean; /** * The category the project belongs to. * @type {UpdatedProjectCategory} * @memberof ProjectForScope */ readonly projectCategory?: UpdatedProjectCategory; /** * The ID of the project. * @type {string} * @memberof ProjectForScope */ id?: string; /** * The key of the project. * @type {string} * @memberof ProjectForScope */ readonly key?: string; /** * The name of the project. * @type {string} * @memberof ProjectForScope */ readonly name?: string; } export declare function ProjectForScopeFromJSON(json: any): ProjectForScope; export declare function ProjectForScopeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectForScope; export declare function ProjectForScopeToJSON(value?: ProjectForScope): any; /** * @export * @enum {string} */ export declare enum ProjectForScopeProjectTypeKeyEnum { Software = "software", ServiceDesk = "service_desk", Business = "business" }