/** * 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. */ /** * * @export * @interface CreateFolderRequest */ export interface CreateFolderRequest { /** * Human readable name of the new folder. * @type {string} * @memberof CreateFolderRequest */ name: string; } /** * Check if a given object implements the CreateFolderRequest interface. */ export declare function instanceOfCreateFolderRequest(value: object): value is CreateFolderRequest; export declare function CreateFolderRequestFromJSON(json: any): CreateFolderRequest; export declare function CreateFolderRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFolderRequest; export declare function CreateFolderRequestToJSON(json: any): CreateFolderRequest; export declare function CreateFolderRequestToJSONTyped(value?: CreateFolderRequest | null, ignoreDiscriminator?: boolean): any;