Class: Eventbrite::Event

Inherits:
APIResource show all
Defined in:
lib/eventbrite/resources/event.rb

Instance Attribute Summary

Attributes inherited from EventbriteObject

#token

Class Method Summary collapse

Methods inherited from APIResource

class_name, #refresh, retrieve, url, #url

Methods inherited from EventbriteObject

#[], #[]=, #as_json, construct_from, #each, #initialize, #inspect, #keys, #next?, #next_page, #paginated?, #refresh_from, #to_hash, #to_json, #to_s, #values

Constructor Details

This class inherits a constructor from Eventbrite::EventbriteObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Eventbrite::EventbriteObject

Class Method Details

.search(params = {}, token = nil) ⇒ Object



3
4
5
6
# File 'lib/eventbrite/resources/event.rb', line 3

def self.search(params={}, token=nil)
  response, token = Eventbrite.request(:get, self.search_url, token, params)
  Util.convert_to_eventbrite_object(response, token)
end