interface DropboxNodeParameters {
authentication?: "oAuth2" | "accessToken";
binaryData?: boolean;
binaryPropertyName?: string;
fileContent?: string;
fileStatus?: "deleted" | "active";
filters?:
| {
file_categories?: (
| "other"
| "video"
| "document"
| "image"
| "pdf"
| "folder"
| "audio"
| "paper"
| "presentation"
| "spreadsheet"
)[];
file_extensions?: string;
path?: string;
}
| {
include_deleted?: boolean;
include_has_explicit_shared_members?: boolean;
include_mounted_folders?: boolean;
include_non_downloadable_files?: boolean;
recursive?: boolean;
};
limit?: number;
operation?: | "create"
| "list"
| "delete"
| "upload"
| "query"
| "move"
| "copy"
| "download";
path?: string;
query?: string;
resource?: "search"
| "file"
| "folder";
returnAll?: boolean;
simple?: boolean;
toPath?: string;
}
Properties§
Source§readonly file Status?: "deleted" | "active"
readonly file Status?: "deleted" | "active"
The string to search for. May match across multiple fields based on the request arguments. Default: "active"
Source§readonly filters?:
| {
file_categories?: (
| "other"
| "video"
| "document"
| "image"
| "pdf"
| "folder"
| "audio"
| "paper"
| "presentation"
| "spreadsheet"
)[];
file_extensions?: string;
path?: string;
}
| {
include_deleted?: boolean;
include_has_explicit_shared_members?: boolean;
include_mounted_folders?: boolean;
include_non_downloadable_files?: boolean;
recursive?: boolean;
}
readonly filters?:
| {
file_categories?: (
| "other"
| "video"
| "document"
| "image"
| "pdf"
| "folder"
| "audio"
| "paper"
| "presentation"
| "spreadsheet"
)[];
file_extensions?: string;
path?: string;
}
| {
include_deleted?: boolean;
include_has_explicit_shared_members?: boolean;
include_mounted_folders?: boolean;
include_non_downloadable_files?: boolean;
recursive?: boolean;
}
Default: {}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1}
Source§readonly operation?:
| "create"
| "list"
| "delete"
| "upload"
| "query"
| "move"
| "copy"
| "download"
readonly operation?:
| "create"
| "list"
| "delete"
| "upload"
| "query"
| "move"
| "copy"
| "download"
Default: "upload"
Source§readonly query?: string
readonly query?: string
The string to search for. May match across multiple fields based on the request arguments.
Means of authenticating with the service Default: "accessToken"