module Infopark::Crm::Core::SearchSupport::ClassMethods
Public Class Methods
search(options)
click to toggle source
# File lib/crm_connector/core/search_support.rb, line 14 def search(options) get_with_continuation(:search, options) end
Public Instance Methods
has_search()
click to toggle source
adds a search method
# File lib/crm_connector/core/search_support.rb, line 12 def has_search class << self def search(options) get_with_continuation(:search, options) end end end