/* 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 StoreListingIntegrationCategory = { DeviceSync: 'device-sync', Cloud: 'cloud', Tool: 'tool', Other: 'other' } as const; export type StoreListingIntegrationCategory = typeof StoreListingIntegrationCategory[keyof typeof StoreListingIntegrationCategory]; export function instanceOfStoreListingIntegrationCategory(value: any): boolean { for (const key in StoreListingIntegrationCategory) { if (Object.prototype.hasOwnProperty.call(StoreListingIntegrationCategory, key)) { if (StoreListingIntegrationCategory[key as keyof typeof StoreListingIntegrationCategory] === value) { return true; } } } return false; } export function StoreListingIntegrationCategoryFromJSON(json: any): StoreListingIntegrationCategory { return StoreListingIntegrationCategoryFromJSONTyped(json, false); } export function StoreListingIntegrationCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingIntegrationCategory { return json as StoreListingIntegrationCategory; } export function StoreListingIntegrationCategoryToJSON(value?: StoreListingIntegrationCategory | null): any { return value as any; } export function StoreListingIntegrationCategoryToJSONTyped(value: any, ignoreDiscriminator: boolean): StoreListingIntegrationCategory { return value as StoreListingIntegrationCategory; }