Class: TicketflyPlus::Calls::Event
- Defined in:
- lib/ticketfly_plus/calls.rb
Constant Summary collapse
- CALL_STRING =
'/event.json?'
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Event
constructor
A new instance of Event.
Methods inherited from Base
Constructor Details
#initialize(options = {}) ⇒ Event
Returns a new instance of Event.
112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/ticketfly_plus/calls.rb', line 112 def initialize(={}) if [:requestor_string] @data = TicketflyPlus::Requestors::Base.request( [:requestor_string] + CALL_STRING + [:params_list] ) else @data = TicketflyPlus::Requestors::Base.next_page_request([:next_page_string]) end end |