/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ProjectCategoryAsResponse { /** * The description of the project category. */ description?: string; /** * The ID of the project category. */ id?: string; /** * The name of the project category. Required on create, optional on update. */ name?: string; /** * The URL of the project category. */ self?: string; } //# sourceMappingURL=ProjectCategoryAsResponse.d.ts.map