class MonkeyBusiness::Collectors

Abstraction of the Surveymonkey collectors resource and associated methods

Public Instance Methods

messages(options = {}) click to toggle source
# File lib/api/collectors.rb, line 16
def messages(options = {})
  fail_without_id
  Messages.new(@api, @options.merge(options), @path)
end
recipients(options = {}) click to toggle source
# File lib/api/collectors.rb, line 21
def recipients(options = {})
  fail_without_id
  Recipients.new(@api, @options.merge(options), @path)
end
responses(options = {}) click to toggle source
# File lib/api/collectors.rb, line 11
def responses(options = {})
  fail_without_id
  Responses.new(@api, @options.merge(options), @path)
end