/* tslint:disable */ /* eslint-disable */ /** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export const WikiDocumentCategory = { Engineering: 'engineering', Product: 'product', ClientTracker: 'client_tracker', UserResearch: 'user_research', Other: 'other' } as const; export type WikiDocumentCategory = typeof WikiDocumentCategory[keyof typeof WikiDocumentCategory]; export function instanceOfWikiDocumentCategory(value: any): boolean { for (const key in WikiDocumentCategory) { if (Object.prototype.hasOwnProperty.call(WikiDocumentCategory, key)) { if (WikiDocumentCategory[key as keyof typeof WikiDocumentCategory] === value) { return true; } } } return false; } export function WikiDocumentCategoryFromJSON(json: any): WikiDocumentCategory { return WikiDocumentCategoryFromJSONTyped(json, false); } export function WikiDocumentCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): WikiDocumentCategory { return json as WikiDocumentCategory; } export function WikiDocumentCategoryToJSON(value?: WikiDocumentCategory | null): any { return value as any; } export function WikiDocumentCategoryToJSONTyped(value: any, ignoreDiscriminator: boolean): WikiDocumentCategory { return value as WikiDocumentCategory; }