class FbGraph2::Struct::StaticResource

Public Class Methods

new(attributes = {}) click to toggle source
Calls superclass method FbGraph2::Struct::new
# File lib/fb_graph2/struct/static_resource.rb, line 9
def initialize(attributes = {})
  super
  if attributes.include? :https
    self.https = self.class.new attributes[:https]
  end
end