Class: TvdbParty::Actor

Inherits:
Object
  • Object
show all
Defined in:
lib/tvdb_party/actor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Actor

Returns a new instance of Actor.



5
6
7
8
9
10
# File 'lib/tvdb_party/actor.rb', line 5

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.



3
4
5
# File 'lib/tvdb_party/actor.rb', line 3

def id
  @id
end

#imageObject

Returns the value of attribute image.



3
4
5
# File 'lib/tvdb_party/actor.rb', line 3

def image
  @image
end

#nameObject

Returns the value of attribute name.



3
4
5
# File 'lib/tvdb_party/actor.rb', line 3

def name
  @name
end

#roleObject

Returns the value of attribute role.



3
4
5
# File 'lib/tvdb_party/actor.rb', line 3

def role
  @role
end

Instance Method Details

#image_urlObject



12
13
14
15
# File 'lib/tvdb_party/actor.rb', line 12

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