/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Complete Dropbox sandbox data structure * * Describes the folder and file structure to be created in the sandbox. * Folders are created in the order specified, and files are uploaded after * all folders have been created. * * Note: The root folder /SandboxTest is always created first automatically. * Additional folders should be nested within /SandboxTest. */ export interface DropboxData { /** List of folder paths to create (e.g., ['/SandboxTest', '/SandboxTest/Documents']) */ folders?: string[]; /** List of files to create with their content */ files?: Klavis.DropboxFile[]; }