class NasaApi::ResponseHandler::NeoFeed
Attributes
element_count[RW]
links[RW]
near_earth_objects[RW]
response[RW]
Public Class Methods
new(response = {})
click to toggle source
# File lib/nasa_api/response_handler.rb, line 79 def initialize(response = {}) @response = response @links = response['links'] @element_count = response['element_count'] @near_earth_objects = response['near_earth_objects'] end