class MonkeyBusiness::Responses

Abstraction of the Surveymonkey responses resource and associated methods

Public Instance Methods

bulk(options = {}) click to toggle source
# File lib/api/responses.rb, line 14
def bulk(options = {})
  @options.merge!(options)
  @path += '/bulk'
  self
end
details(options = {}) click to toggle source
# File lib/api/responses.rb, line 8
def details(options = {})
  @options.merge!(options)
  @path += '/details'
  self
end