class TicketflyPlus::Calls::Event

Constants

CALL_STRING

Public Class Methods

new(options={}) click to toggle source
# File lib/ticketfly_plus/calls.rb, line 112
def initialize(options={})
    if options[:requestor_string]
        @data = TicketflyPlus::Requestors::Base.request(
            options[:requestor_string] + 
            CALL_STRING + 
            options[:params_list]
        )
    else
        @data = TicketflyPlus::Requestors::Base.next_page_request(options[:next_page_string])
    end
end