/* 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 SystemSubtypes = { Inbox: 'inbox', Bin: 'bin' } as const; export type SystemSubtypes = typeof SystemSubtypes[keyof typeof SystemSubtypes]; export function instanceOfSystemSubtypes(value: any): boolean { for (const key in SystemSubtypes) { if (Object.prototype.hasOwnProperty.call(SystemSubtypes, key)) { if (SystemSubtypes[key as keyof typeof SystemSubtypes] === value) { return true; } } } return false; } export function SystemSubtypesFromJSON(json: any): SystemSubtypes { return SystemSubtypesFromJSONTyped(json, false); } export function SystemSubtypesFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemSubtypes { return json as SystemSubtypes; } export function SystemSubtypesToJSON(value?: SystemSubtypes | null): any { return value as any; } export function SystemSubtypesToJSONTyped(value: any, ignoreDiscriminator: boolean): SystemSubtypes { return value as SystemSubtypes; }