/** * 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. */ import type { StoreListingIntegrationDataInstallation } from './StoreListingIntegrationDataInstallation'; import type { StoreListingIntegrationCategory } from './StoreListingIntegrationCategory'; /** * * @export * @interface StoreListingIntegrationData */ export interface StoreListingIntegrationData { /** * * @type {boolean} * @memberof StoreListingIntegrationData */ 'isSingleMirror'?: boolean; /** * * @type {boolean} * @memberof StoreListingIntegrationData */ 'isDeviceSync'?: boolean; /** * * @type {Array} * @memberof StoreListingIntegrationData */ 'category'?: Array; /** * * @type {boolean} * @memberof StoreListingIntegrationData */ 'isSearchBased'?: boolean; /** * * @type {boolean} * @memberof StoreListingIntegrationData */ 'hideFromSidebar'?: boolean; /** * * @type {StoreListingIntegrationDataInstallation} * @memberof StoreListingIntegrationData */ 'installation'?: StoreListingIntegrationDataInstallation; } /** * Check if a given object implements the StoreListingIntegrationData interface. */ export declare function instanceOfStoreListingIntegrationData(value: object): value is StoreListingIntegrationData; export declare function StoreListingIntegrationDataFromJSON(json: any): StoreListingIntegrationData; export declare function StoreListingIntegrationDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingIntegrationData; export declare function StoreListingIntegrationDataToJSON(json: any): StoreListingIntegrationData; export declare function StoreListingIntegrationDataToJSONTyped(value?: StoreListingIntegrationData | null, ignoreDiscriminator?: boolean): any;