class TicketflyPlus::Objects::Base

Private Instance Methods

get_param_info(event_param_items, param_class) click to toggle source
# File lib/ticketfly_plus/objects.rb, line 7
def get_param_info(event_param_items, param_class)
    arr = Array.new
    if !event_param_items.empty?
        event_param_items.each {|item| arr.push param_class.new(item)}
    end
    arr
end