pub fn move_batch_v2<'a>(
client: &'a impl UserAuthClient,
arg: &'a MoveBatchArg,
) -> impl Future<Output = Result<RelocationBatchV2Launch, Error<NoError>>> + Send + 'aAvailable on crate features
async_routes and dbx_files only.Expand description
Move multiple files or folders to different locations at once in the user’s Dropbox. Note that
we do not currently support case-only renaming. This route will replace
move_batch(). The main difference is this route will return status
for each entry, while move_batch() raises failure if any entry
fails. This route will either finish synchronously, or return a job ID and do the async move job
in background. Please use move_batch_check_v2() to check
the job status.