/** * 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 GetSmartCollection200Response */ export interface GetSmartCollection200Response { /** * * @type {string} * @memberof GetSmartCollection200Response */ 'id': string; /** * * @type {string} * @memberof GetSmartCollection200Response */ 'name': string; /** * * @type {string} * @memberof GetSmartCollection200Response */ 'description': string | null; /** * * @type {Array} * @memberof GetSmartCollection200Response */ 'queries': Array; /** * * @type {{ [key: string]: any | null; }} * @memberof GetSmartCollection200Response */ 'preferences': { [key: string]: any | null; }; } /** * Check if a given object implements the GetSmartCollection200Response interface. */ export declare function instanceOfGetSmartCollection200Response(value: object): value is GetSmartCollection200Response; export declare function GetSmartCollection200ResponseFromJSON(json: any): GetSmartCollection200Response; export declare function GetSmartCollection200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSmartCollection200Response; export declare function GetSmartCollection200ResponseToJSON(json: any): GetSmartCollection200Response; export declare function GetSmartCollection200ResponseToJSONTyped(value?: GetSmartCollection200Response | null, ignoreDiscriminator?: boolean): any;