/** * 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 { CreateSmartCollectionRequestQueriesInner } from './CreateSmartCollectionRequestQueriesInner'; /** * * @export * @interface SmartCollection */ export interface SmartCollection { /** * * @type {string} * @memberof SmartCollection */ 'id': string; /** * * @type {string} * @memberof SmartCollection */ 'name': string; /** * * @type {string} * @memberof SmartCollection */ 'description': string | null; /** * * @type {Array} * @memberof SmartCollection */ 'queries': Array; } /** * Check if a given object implements the SmartCollection interface. */ export declare function instanceOfSmartCollection(value: object): value is SmartCollection; export declare function SmartCollectionFromJSON(json: any): SmartCollection; export declare function SmartCollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SmartCollection; export declare function SmartCollectionToJSON(json: any): SmartCollection; export declare function SmartCollectionToJSONTyped(value?: SmartCollection | null, ignoreDiscriminator?: boolean): any;