module SpacexApi::Client::History

Public Instance Methods

get_historical_event(id) click to toggle source
# File lib/spacex_api/client/history.rb, line 10
def get_historical_event(id)
  get("history/#{id}")
end
historical_events() click to toggle source
# File lib/spacex_api/client/history.rb, line 6
def historical_events
  get("history")
end
query_historical_events(body = nil) click to toggle source
# File lib/spacex_api/client/history.rb, line 14
def query_historical_events(body = nil)
  post("history/query", body)
end