class NasaApi::ResponseHandler::NeoBrowse

Attributes

near_earth_objects[RW]
page[RW]
response[RW]

Public Class Methods

new(response = {}) click to toggle source
# File lib/nasa_api/response_handler.rb, line 90
def initialize(response = {})
  @response = response
  @links = response['links']
  @page = response['page']
  @near_earth_objects = response['near_earth_objects']
end