/** * 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 { StoreListingPluginCategory } from './StoreListingPluginCategory'; /** * * @export * @interface StoreListingPluginData */ export interface StoreListingPluginData { /** * * @type {Array} * @memberof StoreListingPluginData */ 'category'?: Array; } /** * Check if a given object implements the StoreListingPluginData interface. */ export declare function instanceOfStoreListingPluginData(value: object): value is StoreListingPluginData; export declare function StoreListingPluginDataFromJSON(json: any): StoreListingPluginData; export declare function StoreListingPluginDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingPluginData; export declare function StoreListingPluginDataToJSON(json: any): StoreListingPluginData; export declare function StoreListingPluginDataToJSONTyped(value?: StoreListingPluginData | null, ignoreDiscriminator?: boolean): any;