Class: P3::Tvdb::Actor

Inherits:
Object
  • Object
show all
Defined in:
lib/p3-tvdb/actor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Actor

Returns a new instance of Actor.



6
7
8
9
10
11
# File 'lib/p3-tvdb/actor.rb', line 6

def initialize(options={})
    @id = options["id"]
    @name = options["Name"]
    @role = options["Role"]
    @image = options["Image"]
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



4
5
6
# File 'lib/p3-tvdb/actor.rb', line 4

def id
  @id
end

#imageObject

Returns the value of attribute image.



4
5
6
# File 'lib/p3-tvdb/actor.rb', line 4

def image
  @image
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/p3-tvdb/actor.rb', line 4

def name
  @name
end

#roleObject

Returns the value of attribute role.



4
5
6
# File 'lib/p3-tvdb/actor.rb', line 4

def role
  @role
end

Instance Method Details

#image_urlObject



13
14
15
16
# File 'lib/p3-tvdb/actor.rb', line 13

def image_url
    return nil unless @image
    "http://thetvdb.com/banners/" + @image
end