Method: Metaforce::Job::Retrieve#zip_file
- Defined in:
- lib/metaforce/job/retrieve.rb
permalink #zip_file ⇒ Object
Public: Decodes the content of the returned zip file.
Examples
job.zip_file
# => '<binary content>'
Returns the decoded content.
51 52 53 |
# File 'lib/metaforce/job/retrieve.rb', line 51 def zip_file Base64.decode64(result.zip_file) end |