Class: FbGraph::Video

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

Instance Attribute Summary collapse

Attributes inherited from Node

#access_token, #endpoint, #identifier

Instance Method Summary collapse

Methods included from Connections::Comments

#comments

Methods inherited from Node

#fetch, fetch

Methods included from Comparison

#==

Constructor Details

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

Returns a new instance of Video.



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/fb_graph/video.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]
  @description  = options[:description]
  @length       = options[:length]
  @created_time = options[:created_time]
  @updated_time = options[:updated_time]
end

Instance Attribute Details

#created_timeObject

Returns the value of attribute created_time.



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

def created_time
  @created_time
end

#descriptionObject

Returns the value of attribute description.



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

def description
  @description
end

#fromObject

Returns the value of attribute from.



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

def from
  @from
end

#lengthObject

Returns the value of attribute length.



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

def length
  @length
end

#messageObject

Returns the value of attribute message.



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

def message
  @message
end

#updated_timeObject

Returns the value of attribute updated_time.



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

def updated_time
  @updated_time
end