/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.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 { ProfilePreview } from "./ProfilePreview"; import type { FolderResponse } from "./FolderResponse"; /** * * @export * @interface ListFoldersResponse */ export interface ListFoldersResponse { /** * List of top-level folders, each folder may contain nested folders and cloud profiles. * @type {Array} * @memberof ListFoldersResponse */ folders: Array; /** * List of profiles not associated with any folder. This includes both cloud and local profiles. * @type {Array} * @memberof ListFoldersResponse */ profiles: Array; } /** * Check if a given object implements the ListFoldersResponse interface. */ export declare function instanceOfListFoldersResponse(value: object): value is ListFoldersResponse; export declare function ListFoldersResponseFromJSON(json: any): ListFoldersResponse; export declare function ListFoldersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListFoldersResponse; export declare function ListFoldersResponseToJSON(json: any): ListFoldersResponse; export declare function ListFoldersResponseToJSONTyped(value?: ListFoldersResponse | null, ignoreDiscriminator?: boolean): any;