/** * 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 UpdatedProjectCategory */ export interface UpdatedProjectCategory { /** * The description of the project category. * @type {string} * @memberof UpdatedProjectCategory */ readonly name?: string; /** * The name of the project category. * @type {string} * @memberof UpdatedProjectCategory */ readonly description?: string; /** * The ID of the project category. * @type {string} * @memberof UpdatedProjectCategory */ readonly id?: string; /** * The URL of the project category. * @type {string} * @memberof UpdatedProjectCategory */ readonly self?: string; } export declare function UpdatedProjectCategoryFromJSON(json: any): UpdatedProjectCategory; export declare function UpdatedProjectCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatedProjectCategory; export declare function UpdatedProjectCategoryToJSON(value?: UpdatedProjectCategory): any;