/** * 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 ListResourceRootsTypesParameterInner */ export interface ListResourceRootsTypesParameterInner { /** * * @type {RootType} * @memberof ListResourceRootsTypesParameterInner */ 'type'?: RootType; /** * * @type {string} * @memberof ListResourceRootsTypesParameterInner */ 'subtype'?: ListResourceRootsTypesParameterInnerSubtypeEnum; } /** * @export */ export declare const ListResourceRootsTypesParameterInnerSubtypeEnum: { 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"; readonly Inbox: "inbox"; readonly Bin: "bin"; readonly Example: "example"; }; export type ListResourceRootsTypesParameterInnerSubtypeEnum = typeof ListResourceRootsTypesParameterInnerSubtypeEnum[keyof typeof ListResourceRootsTypesParameterInnerSubtypeEnum]; /** * Check if a given object implements the ListResourceRootsTypesParameterInner interface. */ export declare function instanceOfListResourceRootsTypesParameterInner(value: object): value is ListResourceRootsTypesParameterInner; export declare function ListResourceRootsTypesParameterInnerFromJSON(json: any): ListResourceRootsTypesParameterInner; export declare function ListResourceRootsTypesParameterInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResourceRootsTypesParameterInner; export declare function ListResourceRootsTypesParameterInnerToJSON(json: any): ListResourceRootsTypesParameterInner; export declare function ListResourceRootsTypesParameterInnerToJSONTyped(value?: ListResourceRootsTypesParameterInner | null, ignoreDiscriminator?: boolean): any;