Class: FbGraph::Status

Inherits:
Node
  • Object
show all
Includes:
Connections::Comments
Defined in:
lib/fb_graph/status.rb

Instance Attribute Summary collapse

Attributes inherited from Node

#access_token, #endpoint, #identifier

Instance Method Summary collapse

Methods included from Connections::Comments

#comment!, #comments, #like!, #unlike!

Methods inherited from Node

#destroy, fetch, #fetch

Methods included from Comparison

#==

Constructor Details

#initialize(identifier, options = {}) ⇒ Status

Returns a new instance of Status.



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/fb_graph/status.rb', line 7

def initialize(identifier, options = {})
  super
  if (from = options[:from])
    @from = if from[:category]
      FbGraph::Page.new(from.delete(:id), from)
    else
      FbGraph::User.new(from.delete(:id), from)
    end
  end
  @message = options[:message]
  if (updated_time = options.delete(:updated_time))
    @updated_time = Time.parse(updated_time).utc
  end
end

Instance Attribute Details

#fromObject

Returns the value of attribute from.



5
6
7
# File 'lib/fb_graph/status.rb', line 5

def from
  @from
end

#messageObject

Returns the value of attribute message.



5
6
7
# File 'lib/fb_graph/status.rb', line 5

def message
  @message
end

#updated_timeObject

Returns the value of attribute updated_time.



5
6
7
# File 'lib/fb_graph/status.rb', line 5

def updated_time
  @updated_time
end