/** * 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 { RootType } from './RootType'; /** * * @export * @interface SearchRequestAllOfAllOfFiltersRootsInner */ export interface SearchRequestAllOfAllOfFiltersRootsInner { /** * * @type {RootType} * @memberof SearchRequestAllOfAllOfFiltersRootsInner */ 'type': RootType; /** * * @type {string} * @memberof SearchRequestAllOfAllOfFiltersRootsInner */ 'subtype'?: SearchRequestAllOfAllOfFiltersRootsInnerSubtypeEnum; /** * * @type {boolean} * @memberof SearchRequestAllOfAllOfFiltersRootsInner */ 'isPrivate'?: boolean; } /** * @export */ export declare const SearchRequestAllOfAllOfFiltersRootsInnerSubtypeEnum: { readonly Inbox: "inbox"; readonly Bin: "bin"; readonly GoogleDrive: "GOOGLE_DRIVE"; readonly Gmail: "GMAIL"; readonly Github: "GITHUB"; readonly IosDevice: "IOS_DEVICE"; readonly AndroidDevice: "ANDROID_DEVICE"; readonly Rss: "RSS"; readonly Notion: "NOTION"; readonly LocalFs: "LOCAL_FS"; readonly Dropbox: "DROPBOX"; readonly Onedrive: "ONEDRIVE"; readonly Mixpanel: "MIXPANEL"; readonly Stripe: "STRIPE"; }; export type SearchRequestAllOfAllOfFiltersRootsInnerSubtypeEnum = typeof SearchRequestAllOfAllOfFiltersRootsInnerSubtypeEnum[keyof typeof SearchRequestAllOfAllOfFiltersRootsInnerSubtypeEnum]; /** * Check if a given object implements the SearchRequestAllOfAllOfFiltersRootsInner interface. */ export declare function instanceOfSearchRequestAllOfAllOfFiltersRootsInner(value: object): value is SearchRequestAllOfAllOfFiltersRootsInner; export declare function SearchRequestAllOfAllOfFiltersRootsInnerFromJSON(json: any): SearchRequestAllOfAllOfFiltersRootsInner; export declare function SearchRequestAllOfAllOfFiltersRootsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchRequestAllOfAllOfFiltersRootsInner; export declare function SearchRequestAllOfAllOfFiltersRootsInnerToJSON(json: any): SearchRequestAllOfAllOfFiltersRootsInner; export declare function SearchRequestAllOfAllOfFiltersRootsInnerToJSONTyped(value?: SearchRequestAllOfAllOfFiltersRootsInner | null, ignoreDiscriminator?: boolean): any;