class FbGraph2::Struct::AppEventType

Public Class Methods

new(attributes = {}) click to toggle source
Calls superclass method FbGraph2::Struct::new
# File lib/fb_graph2/struct/app_event_type.rb, line 15
def initialize(attributes = {})
  super
  if attributes.include? :parameters
    self.parameters = Collection.new(attributes[:parameters]).collect! do |param|
      Parameter.new param
    end
  end
end