/** * This file was auto-generated by Fern from our API Definition. */ /** * Dropbox file data * * Attributes: * path: Full path to the file (e.g., "/SandboxTest/document.txt") * content: Text content of the file */ export interface DropboxFile { /** Full path to the file (must start with /SandboxTest/) */ path: string; /** Text content of the file */ content: string; }