Class: DropboxApi::Results::RelocationBatchResultEntry

Inherits:
Base
  • Object
show all
Defined in:
lib/dropbox_api/results/relocation_batch_result_entry.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
13
# File 'lib/dropbox_api/results/relocation_batch_result_entry.rb', line 3

def self.new(result_data)
  case result_data['.tag']
  when 'success'
    DropboxApi::Metadata::Resource.new result_data['success']
  when 'failure'
    DropboxApi::Errors::RelocationBatchEntryError
      .build('File or folder operation failed', result_data['failure'])
  else
    raise NotImplementedError, "Unknown result type: #{result_data['.tag']}"
  end
end