Class: FbGraph::Group

Inherits:
Node
  • Object
show all
Extended by:
Searchable
Includes:
Connections::Feed, Connections::Members, Connections::Picture
Defined in:
lib/fb_graph/group.rb

Instance Attribute Summary collapse

Attributes inherited from Node

#access_token, #endpoint, #identifier

Instance Method Summary collapse

Methods included from Searchable

search, search

Methods included from Connections::Picture

#picture

Methods included from Connections::Members

#members

Methods included from Connections::Feed

#feed, #feed!

Methods inherited from Node

#connection, #destroy, fetch, #fetch

Methods included from Comparison

#==

Constructor Details

#initialize(identifier, attributes = {}) ⇒ Group

Returns a new instance of Group.



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/fb_graph/group.rb', line 10

def initialize(identifier, attributes = {})
  super
  if (owner = attributes[:owner])
    @owner = User.new(owner.delete(:id), owner)
  end
  @name         = attributes[:name]
  @description  = attributes[:description]
  @link         = attributes[:link]
  @icon         = attributes[:icon]
  @privacy      = attributes[:privacy]
  @version      = attributes[:version]
  if attributes[:venue]
    @venue = Venue.new(attributes[:venue])
  end
  if attributes[:updated_time]
    @updated_time = Time.parse(attributes[:updated_time]).utc
  end
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def description
  @description
end

#iconObject

Returns the value of attribute icon.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def icon
  @icon
end

Returns the value of attribute link.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def link
  @link
end

#nameObject

Returns the value of attribute name.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def name
  @name
end

#ownerObject

Returns the value of attribute owner.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def owner
  @owner
end

#privacyObject

Returns the value of attribute privacy.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def privacy
  @privacy
end

#updated_timeObject

Returns the value of attribute updated_time.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def updated_time
  @updated_time
end

#venueObject

Returns the value of attribute venue.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def venue
  @venue
end

#versionObject

Returns the value of attribute version.



8
9
10
# File 'lib/fb_graph/group.rb', line 8

def version
  @version
end