/** * 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. */ /** * Details about a project type. * @export * @interface ProjectType */ export interface ProjectType { /** * The key of the project type. * @type {string} * @memberof ProjectType */ readonly key?: string; /** * The icon of the project type. * @type {string} * @memberof ProjectType */ readonly icon?: string; /** * The formatted key of the project type. * @type {string} * @memberof ProjectType */ readonly formattedKey?: string; /** * The color of the project type. * @type {string} * @memberof ProjectType */ readonly color?: string; /** * The key of the project type\'s description. * @type {string} * @memberof ProjectType */ readonly descriptionI18nKey?: string; } export declare function ProjectTypeFromJSON(json: any): ProjectType; export declare function ProjectTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectType; export declare function ProjectTypeToJSON(value?: ProjectType): any;