Class: DropboxApi::Results::CopyBatchResult

Inherits:
Base
  • Object
show all
Defined in:
lib/dropbox_api/results/copy_batch_result.rb

Class Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from DropboxApi::Results::Base

Class Method Details

.new(result_data) ⇒ Object



3
4
5
6
7
8
9
10
11
12
# File 'lib/dropbox_api/results/copy_batch_result.rb', line 3

def self.new(result_data)
  case result_data[".tag"]
  when 'async_job_id'
    result_data['async_job_id']
  when 'complete'
    RelocationBatchResult.new(result_data)
  else
    raise NotImplementedError, "Unknown result type: #{result_data['.tag']}"
  end
end