/* 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 StoreListingPluginCategory = { Other: 'other' } as const; export type StoreListingPluginCategory = typeof StoreListingPluginCategory[keyof typeof StoreListingPluginCategory]; export function instanceOfStoreListingPluginCategory(value: any): boolean { for (const key in StoreListingPluginCategory) { if (Object.prototype.hasOwnProperty.call(StoreListingPluginCategory, key)) { if (StoreListingPluginCategory[key as keyof typeof StoreListingPluginCategory] === value) { return true; } } } return false; } export function StoreListingPluginCategoryFromJSON(json: any): StoreListingPluginCategory { return StoreListingPluginCategoryFromJSONTyped(json, false); } export function StoreListingPluginCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingPluginCategory { return json as StoreListingPluginCategory; } export function StoreListingPluginCategoryToJSON(value?: StoreListingPluginCategory | null): any { return value as any; } export function StoreListingPluginCategoryToJSONTyped(value: any, ignoreDiscriminator: boolean): StoreListingPluginCategory { return value as StoreListingPluginCategory; }