/** * 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. */ /** * A project category. * @export * @interface ProjectCategory */ export interface ProjectCategory { /** * The description of the project category. Required on create, optional on update. * @type {string} * @memberof ProjectCategory */ description?: string; /** * The name of the project category. Required on create, optional on update. * @type {string} * @memberof ProjectCategory */ name?: string; /** * The ID of the project category. * @type {string} * @memberof ProjectCategory */ readonly id?: string; /** * The URL of the project category. * @type {string} * @memberof ProjectCategory */ readonly self?: string; } export declare function ProjectCategoryFromJSON(json: any): ProjectCategory; export declare function ProjectCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectCategory; export declare function ProjectCategoryToJSON(value?: ProjectCategory): any;