Method: Metaforce::Job::Retrieve#result
- Defined in:
- lib/metaforce/job/retrieve.rb
permalink #result ⇒ Object
Public: Get the detailed status of the retrieve.
Examples
job.result
# => { :id => '1234', :zip_file => '<base64 encoded content>', ... }
Returns the RetrieveResult (www.salesforce.com/us/developer/docs/api_meta/Content/meta_retrieveresult.htm).
39 40 41 |
# File 'lib/metaforce/job/retrieve.rb', line 39 def result @result ||= client.status(id, :retrieve) end |