Class: Marver::Summary::Comic

Inherits:
Object
  • Object
show all
Defined in:
lib/marver/entities/summary/comic.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(json) ⇒ Comic

Returns a new instance of Comic.



8
9
10
11
12
# File 'lib/marver/entities/summary/comic.rb', line 8

def initialize(json)
  @name = json['name']
  @resource_uri = json['resourceURI']
  @id = json['id'].to_i
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



6
7
8
# File 'lib/marver/entities/summary/comic.rb', line 6

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



6
7
8
# File 'lib/marver/entities/summary/comic.rb', line 6

def name
  @name
end

#resource_uriObject (readonly)

Returns the value of attribute resource_uri.



6
7
8
# File 'lib/marver/entities/summary/comic.rb', line 6

def resource_uri
  @resource_uri
end

#typeObject (readonly)

Returns the value of attribute type.



6
7
8
# File 'lib/marver/entities/summary/comic.rb', line 6

def type
  @type
end

Instance Method Details

#fullObject



14
15
16
17
18
# File 'lib/marver/entities/summary/comic.rb', line 14

def full
  response = Marver::API::Client.new.get_uri(@resource_uri)
  results = Marver::DataContainer.new(response).results
  Marver::Factory::Comic.new(results).build
end