Class: Thanos::Item::Character

Inherits:
Object
  • Object
show all
Defined in:
lib/thanos/resources/item/character.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Character

Returns a new instance of Character.



6
7
8
9
10
11
# File 'lib/thanos/resources/item/character.rb', line 6

def initialize(data)
  @id = data['id'].to_i
  @name = data['name']
  @resource_uri = data['resourceURI']
  @type = data['type'] || nil
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



4
5
6
# File 'lib/thanos/resources/item/character.rb', line 4

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



4
5
6
# File 'lib/thanos/resources/item/character.rb', line 4

def name
  @name
end

#resource_uriObject (readonly)

Returns the value of attribute resource_uri.



4
5
6
# File 'lib/thanos/resources/item/character.rb', line 4

def resource_uri
  @resource_uri
end

#typeObject (readonly)

Returns the value of attribute type.



4
5
6
# File 'lib/thanos/resources/item/character.rb', line 4

def type
  @type
end

Instance Method Details

#completeObject



13
14
15
16
17
# File 'lib/thanos/resources/item/character.rb', line 13

def complete
  response = Thanos::API::Response.new(RestClient.get(@resource_uri))
  results = Thanos::ResponseHolder.new(response).results
  Thanos::Factory::Character.new(results).build
end