Method: Metaforce::Job::Retrieve#zip_file

Defined in:
lib/metaforce/job/retrieve.rb

#zip_fileObject

Public: Decodes the content of the returned zip file.

Examples

job.zip_file
# => '<binary content>'

Returns the decoded content.

[View source]

51
52
53
# File 'lib/metaforce/job/retrieve.rb', line 51

def zip_file
  Base64.decode64(result.zip_file)
end